diff options
author | johannst <johannst@users.noreply.github.com> | 2020-03-13 21:00:32 +0000 |
---|---|---|
committer | johannst <johannst@users.noreply.github.com> | 2020-03-13 21:00:32 +0000 |
commit | e5426455329d5b9439491d697405b8386836a154 (patch) | |
tree | df4f21f7a28e7b11ddab90373f838e3ad1241d1b /ayu-highlight.css | |
download | notes-e5426455329d5b9439491d697405b8386836a154.tar.gz notes-e5426455329d5b9439491d697405b8386836a154.zip |
deploy: ee4ff84abec4c0ebabde925f6d0772e256fa3ddc
Diffstat (limited to 'ayu-highlight.css')
-rw-r--r-- | ayu-highlight.css | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/ayu-highlight.css b/ayu-highlight.css new file mode 100644 index 0000000..128e016 --- /dev/null +++ b/ayu-highlight.css @@ -0,0 +1,79 @@ +/* +Based off of the Ayu theme +Original by Dempfi (https://github.com/dempfi/ayu) +*/ + +.hljs { + display: block; + overflow-x: auto; + background: #191f26; + color: #e6e1cf; + padding: 0.5em; +} + +.hljs-comment, +.hljs-quote, +.hljs-meta { + color: #5c6773; + font-style: italic; +} + +.hljs-variable, +.hljs-template-variable, +.hljs-attribute, +.hljs-attr, +.hljs-regexp, +.hljs-link, +.hljs-selector-id, +.hljs-selector-class { + color: #ff7733; +} + +.hljs-number, +.hljs-builtin-name, +.hljs-literal, +.hljs-type, +.hljs-params { + color: #ffee99; +} + +.hljs-string, +.hljs-bullet { + color: #b8cc52; +} + +.hljs-title, +.hljs-built_in, +.hljs-section { + color: #ffb454; +} + +.hljs-keyword, +.hljs-selector-tag, +.hljs-symbol { + color: #ff7733; +} + +.hljs-name { + color: #36a3d9; +} + +.hljs-tag { + color: #00568d; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-addition { + color: #91b362; +} + +.hljs-deletion { + color: #d96c75; +} |