Skip to content

Commit aee97d4

Browse files
committed
Add faint attribute to styles example
1 parent f072fae commit aee97d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/styles.raku

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ class StyleUI is TopLevel {
1717
# Column 0: basic attributes
1818
.widget(:vertical, style => %(padding-width => (0, 1)),
1919
.plain-text(text => 'bold', color => 'bold'),
20+
.plain-text(text => 'faint', color => 'faint'),
2021
.plain-text(text => 'italic', color => 'italic'),
2122
.plain-text(text => 'inverse', color => 'inverse'),
2223
.plain-text(text => 'underline', color => 'underline'),
2324
.plain-text(text => 'all of the above',
24-
color => 'bold italic inverse underline'),
25+
color => 'bold faint italic inverse underline'),
2526
),
2627

2728
# First divider: light dashed

0 commit comments

Comments
 (0)