diff options
Diffstat (limited to 'themes/Adwaita/tokens-light.css')
-rw-r--r-- | themes/Adwaita/tokens-light.css | 123 |
1 files changed, 123 insertions, 0 deletions
diff --git a/themes/Adwaita/tokens-light.css b/themes/Adwaita/tokens-light.css new file mode 100644 index 0000000..3485288 --- /dev/null +++ b/themes/Adwaita/tokens-light.css @@ -0,0 +1,123 @@ + +/* Hex display */ + +.token-raw { + + color: #555; + +} + +.token-raw-full { + + color: #000; + + font-weight: bold; + +} + +.token-raw-null { + + color: #ccc; + +} + +.token-printable { + + color: #555; + +} + +.token-not-printable { + + color: #ccc; + +} + +/* Assembly views */ + +.token-comment, +.token-indication { + + color: #37b05b; + +} + +.token-phys-addr-padding, +.token-virt-addr-padding { + + color: #bebebe; + +} + +.token-phys-addr, +.token-virt-addr { + + color: #7c7c7b; + +} + +.token-raw-code, +.token-raw-code-null { + + color: #000; + + +} + +.token-label, +.token-section, +.token-segment { + + color: #d2ad00; + +} + +.token-instruction, +.token-keyword { + + color: darker(#7c7c7b); + +} + +.token-immediate { + + color: #a020f0; + +} + +.token-register { + + color: #4141d1; + +} + +.token-punct, +.token-hooks, +.token-signs, +.token-ltgt { + + color: #000; + + font-weight: bold; + +} + +.token-string { + + color: #cc7e00; + +} + +.token-var-name { + + color: #c50; + +} + +.token-error { + + color: #ff0000; + + font-weight: bold; + +} |