diff options
Diffstat (limited to 'static/styles/syntax/simple.css')
| -rw-r--r-- | static/styles/syntax/simple.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/static/styles/syntax/simple.css b/static/styles/syntax/simple.css new file mode 100644 index 0000000..ddf0ff5 --- /dev/null +++ b/static/styles/syntax/simple.css @@ -0,0 +1,19 @@ +/* Simple Syntax Highlighting for Lisp (Colorize output) */ +.lisp-code-block { + background-color: #121214 !important; /* Rich dark background to improve contrast */ + color: #b0b0b0 !important; /* Slightly lighter/clearer gray for base code */ + padding: 10px !important; +} + +.lisp-code-block .string { color: #b0b0b0; } +.lisp-code-block .comment { color: #808080; font-style: italic; } +.lisp-code-block .symbol { color: #1e90ff; font-style: normal !important; } /* Explicitly remove italic */ +.lisp-code-block .keyword { color: #5c87ff; font-weight: bold; } /* Vibrant royalblue for dark contrast */ +.lisp-code-block .character { color: #b0b0b0; } +.lisp-code-block .special { color: #b0b0b0; } +.lisp-code-block .paren1 { color: #b0b0b0; } +.lisp-code-block .paren2 { color: #b0b0b0; } +.lisp-code-block .paren3 { color: #b0b0b0; } +.lisp-code-block .paren4 { color: #b0b0b0; } +.lisp-code-block .paren5 { color: #b0b0b0; } +.lisp-code-block .paren6 { color: #b0b0b0; } |
