From 2f8a0279eb9c33f12ea2a172d9c692f70317ba3e Mon Sep 17 00:00:00 2001 From: pancakes Date: Mon, 18 Nov 2024 17:08:22 +1000 Subject: [PATCH] Update styles --- src/routes/style.css | 77 ++++++++++++++++---------------------------- 1 file changed, 28 insertions(+), 49 deletions(-) diff --git a/src/routes/style.css b/src/routes/style.css index 27dcd12..35d6868 100644 --- a/src/routes/style.css +++ b/src/routes/style.css @@ -288,80 +288,59 @@ pre code { } /* Code highlighting */ -.token.comment, -.token.doctype, -.token.cdata { - color: #565f89; - font-style: italic; +.language-html, +.language-md { + color: #9aa5ce; } -.token.prolog, -.token.builtin { +.token.keyword, +.token.tag { color: #f7768e; } -.token.punctuation { - color: #bb9af7; -} - -.namespace { - opacity: 0.7; -} - -.token.property, -.token.keyword { - color: #9d7cd8; -} - -.token.class-name { - color: #ffffb6; - text-decoration: underline; -} - .token.boolean, -.token.constant { +.token.number { color: #ff9e64; } -.token.symbol, -.token.deleted { - color: #2ac3de; +.token.parameter, +.regex-source { + color: #e0af68; } -.token.number { - color: #ff73fd; -} - -.token.selector, .token.string, -.token.char, -.token.tag, -.token.inserted { +.token.selector { color: #9ece6a; } -.token.attr-name { - color: rgb(241, 250, 140); +.token.property, +.token.regex-flags, +.token.title { + color: #7dcfff; } -.token.variable { - color: #c0caf5; -} - -.token.operator { - color: #89ddff; +.token.literal-property, +.token.url { + color: #73daca; } .token.function { color: #7aa2f7; } -.token.important, -.token.bold { - font-weight: bold; +.token.operator, +.token.attr-name { + color: #bb9af7; } -.token.italic { +.token.constant, +.token.environment, +.token.class-name { + color: #c0caf5; +} + +.token.comment { + color: #565f89; font-style: italic; }