Skip to content

Commit

Permalink
feat: Export-4BitCss bold, italic, underline, strikethru ( Fixes #54, F…
Browse files Browse the repository at this point in the history
…ixes #55, Fixes #56, Fixes #57 )
  • Loading branch information
StartAutomating authored and StartAutomating committed Apr 20, 2024
1 parent e5985b3 commit e423a32
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/Terminal-Basic/Terminal-Basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,14 @@
.brightwhite-stroke , .bright-white-stroke , .BrightWhiteFill , .ANSI15-Fill, .ansi15-fill { stroke: var(--brightWhite) }
.dim, .Dim { opacity: .5; }
.hidden, .Hidden { opacity: 0; }
b, bold, .bold, .Bold { font-weight: bold; }
.boldOff, .BoldOff { font-weight: normal; }
i, italic, .italic, .Italic { font-style: italic; }
.italicOff, .ItalicOff { font-style: normal; }
u, underline, .underline, .Underline { text-decoration: underline; }
.underlineOff, .UnderlineOff { text-decoration: none; }
s, strike, .strike, .Strike { text-decoration: line-through; }
.strikeOff, .StrikeOff { text-decoration: none; }

body {
color: var(--foreground);
Expand Down

0 comments on commit e423a32

Please sign in to comment.