Skip to content

Commit faf9f76

Browse files
committed
fix: use valid font weight values for ASCII art
1 parent 85f8e11 commit faf9f76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/docs/src/app/examples/ascii-art-studio/ascii-art-studio.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ interface PresetBanner {
126126
>
127127
<option value="normal">Normal</option>
128128
<option value="bold">Bold</option>
129-
<option value="lighter">Light</option>
129+
<option value="300">Light</option>
130130
</select>
131131
</div>
132132
</div>
@@ -237,7 +237,7 @@ export class AsciiArtStudio {
237237
widthValue = 80;
238238
fontSizeValue = 48;
239239
invertedValue = false;
240-
fontWeightValue: 'normal' | 'bold' | 'lighter' = 'normal';
240+
fontWeightValue: 'normal' | 'bold' | '300' = 'normal';
241241

242242
// Signals for reactive state
243243
copyButtonText = signal('Copy');

0 commit comments

Comments
 (0)