Skip to content

Commit

Permalink
fix: Default font size (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhea-so committed Apr 25, 2024
2 parents 142fa0e + 2e5008b commit d7ce88b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.4.32",
"version": "0.4.33",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion web/src/themes/03_ONE_LINE/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const ONE_LINE_OPTIONS: ThemeOption[] = [
{ key: 'TEXT_COLOR', type: String, default: '#000000', description: '#ffffff is white, #000000 is black' },
{ key: 'TEXT_ALIGN', type: String, default: 'center', description: 'left or center or right' },
{ key: 'FONT_STYLE', type: String, default: 'normal', description: 'normal or italic' },
{ key: 'FONT_WEIGHT', type: Number, default: 100, description: '100 - 900' },
{ key: 'FONT_WEIGHT', type: Number, default: 300, description: '100 - 900' },
{ key: 'FONT_SIZE', type: Number, default: 70, description: 'px' },
{ key: 'FONT_FAMILY', type: String, default: 'Barlow', description: 'ex. digital-7, Barlow, Arial, sans-serif' },
{ key: 'TOP_LABEL', type: String, default: '', description: 'ex. @username' },
Expand Down
2 changes: 1 addition & 1 deletion web/src/themes/04_TWO_LINE/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const TWO_LINE_OPTIONS: ThemeOption[] = [
{ key: 'TEXT_COLOR', type: String, default: '#000000', description: '#ffffff is white, #000000 is black' },
{ key: 'TEXT_ALIGN', type: String, default: 'center', description: 'left or center or right' },
{ key: 'FONT_STYLE', type: String, default: 'normal', description: 'normal or italic' },
{ key: 'FONT_WEIGHT', type: Number, default: 100, description: '100 - 900' },
{ key: 'FONT_WEIGHT', type: Number, default: 300, description: '100 - 900' },
{ key: 'FONT_SIZE', type: Number, default: 70, description: 'px' },
{ key: 'FONT_FAMILY', type: String, default: 'Barlow', description: 'ex. digital-7, Barlow, Arial, sans-serif' },
{ key: 'TOP_LABEL', type: String, default: '', description: 'ex. @username' },
Expand Down
2 changes: 1 addition & 1 deletion web/src/themes/07_STRAP/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ supportLogo.set('SONY_DARK', loadLogo('/maker/dark/sony.png'));
const STRAP_OPTIONS: ThemeOption[] = [
{ key: 'ARTIST', type: String, default: 'Your Name', description: 'your name' },
{ key: 'DARK_MODE', type: Boolean, default: false, description: 'enable to use dark mode' },
{ key: 'SECONDARY_TEXT_FONT_WEIGHT', type: Number, default: 100, description: '100 - 900' },
{ key: 'SECONDARY_TEXT_FONT_WEIGHT', type: Number, default: 300, description: '100 - 900' },
{ key: 'PADDING_TOP', type: Number, default: 0, description: 'px' },
{ key: 'PADDING_BOTTOM', type: Number, default: 0, description: 'px' },
{ key: 'PADDING_LEFT', type: Number, default: 0, description: 'px' },
Expand Down

0 comments on commit d7ce88b

Please sign in to comment.