summaryrefslogtreecommitdiffstats
path: root/static/base/highlight/styles/tokyo-night-light.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/base/highlight/styles/tokyo-night-light.css')
-rw-r--r--static/base/highlight/styles/tokyo-night-light.css114
1 files changed, 114 insertions, 0 deletions
diff --git a/static/base/highlight/styles/tokyo-night-light.css b/static/base/highlight/styles/tokyo-night-light.css
new file mode 100644
index 0000000..2c7ca12
--- /dev/null
+++ b/static/base/highlight/styles/tokyo-night-light.css
@@ -0,0 +1,114 @@
+pre code.hljs {
+ display: block;
+ overflow-x: auto;
+ padding: 1em
+}
+code.hljs {
+ padding: 3px 5px
+}
+/*!
+ Theme: Tokyo-night-light
+ origin: https://github.com/enkia/tokyo-night-vscode-theme
+ Description: Original highlight.js style
+ Author: (c) Henri Vandersleyen <hvandersleyen@gmail.com>
+ License: see project LICENSE
+ Touched: 2022
+*/
+/* Comment */
+.hljs-meta,
+.hljs-comment {
+ color: #9699a3
+}
+/* Red */
+/*INFO: This keyword, HTML elements, Regex group symbol, CSS units, Terminal Red */
+.hljs-tag,
+.hljs-doctag,
+.hljs-selector-id,
+.hljs-selector-class,
+.hljs-regexp,
+.hljs-template-tag,
+.hljs-selector-pseudo,
+.hljs-selector-attr,
+.hljs-variable.language_,
+.hljs-deletion {
+ color: #8c4351
+}
+/*Orange */
+/*INFO: Number and Boolean constants, Language support constants */
+.hljs-variable,
+.hljs-template-variable,
+.hljs-number,
+.hljs-literal,
+.hljs-type,
+.hljs-params,
+.hljs-link {
+ color: #965027
+}
+/* Yellow */
+/* INFO: Function parameters, Regex character sets, Terminal Yellow */
+.hljs-built_in,
+.hljs-attribute {
+ color: #8f5e15
+}
+/* cyan */
+/* INFO: Language support functions, CSS HTML elements */
+.hljs-selector-tag {
+ color: #166775
+}
+/* light blue */
+/* INFO: Object properties, Regex quantifiers and flags, Markdown headings, Terminal Cyan, Markdown code, Import/export keywords */
+.hljs-keyword,
+.hljs-title.function_,
+.hljs-title,
+.hljs-title.class_,
+.hljs-title.class_.inherited__,
+.hljs-subst,
+.hljs-property {
+ color: #0f4b6e
+}
+/*Green*/
+/* INFO: Object literal keys, Markdown links, Terminal Green */
+.hljs-selector-tag {
+ color: #33635c
+}
+/*Green(er) */
+/* INFO: Strings, CSS class names */
+.hljs-quote,
+.hljs-string,
+.hljs-symbol,
+.hljs-bullet,
+.hljs-addition {
+ color: #485e30
+}
+/* Blue */
+/* INFO: Function names, CSS property names, Terminal Blue */
+.hljs-code,
+.hljs-formula,
+.hljs-section {
+ color: #34548a
+}
+/* Magenta */
+/*INFO: Control Keywords, Storage Types, Regex symbols and operators, HTML Attributes, Terminal Magenta */
+.hljs-name,
+.hljs-keyword,
+.hljs-operator,
+.hljs-keyword,
+.hljs-char.escape_,
+.hljs-attr {
+ color: #5a4a78
+}
+/* white*/
+/* INFO: Variables, Class names, Terminal White */
+.hljs-punctuation {
+ color: #343b58
+}
+.hljs {
+ background: #d5d6db;
+ color: #565a6e
+}
+.hljs-emphasis {
+ font-style: italic
+}
+.hljs-strong {
+ font-weight: bold
+} \ No newline at end of file