diff options
author | Deniz Akşimşek <deniz@denizaksimsek.com> | 2022-10-21 17:26:11 +0300 |
---|---|---|
committer | Deniz Akşimşek <deniz@denizaksimsek.com> | 2022-10-21 17:26:11 +0300 |
commit | 82f54482929ed443143ae6f23fe8708259b022c6 (patch) | |
tree | 37a6b2b9c2271b1c8c2b777cc4638ec4ec5b8793 /src/missing-prism.css | |
parent | 7bfa59d1f3211a6d1e81557b5c3e81071815ed5a (diff) | |
download | missing-82f54482929ed443143ae6f23fe8708259b022c6.tar.gz missing-82f54482929ed443143ae6f23fe8708259b022c6.zip |
MASSIVE REORGANIZATION
Diffstat (limited to 'src/missing-prism.css')
-rw-r--r-- | src/missing-prism.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/src/missing-prism.css b/src/missing-prism.css new file mode 100644 index 0000000..23e48b5 --- /dev/null +++ b/src/missing-prism.css @@ -0,0 +1,62 @@ + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata, +.token.punctuation { + color: var(--muted-fg); +} + +.token.property, +.token.tag, +.token.boolean, +.token.number, +.token.constant, +.token.symbol, +.token.deleted { + color: var(--bad-fg); +} + +.token.selector, +.token.attr-name, +.token.string, +.token.char, +.token.builtin, +.token.inserted { + color: var(--ok-fg); +} + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string, +.token.regex, +.token.important, +.token.variable { + color: var(--warn-fg) +} + +.token.atrule, +.token.attr-value, +.token.keyword { + color: var(--info-fg); +} + +.token.function { + color: var(--bad-fg); + font-style: italic; +} + +.token.important, +.token.bold { + font-weight: bold; +} + +.token.italic { + font-style: italic; +} + +.token.entity { + cursor: help; +} |