aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorSlug2022-07-28 23:14:34 +0000
committerGitHub2022-07-28 23:14:34 +0000
commit14eca318a772353a3bfa2d86c196572e25497132 (patch)
tree1570a40c9665b3e0ac079c3869da7ab272e3a7bd /runtime
parenta1c969012d0b3824c04257918edb3abe41d190fe (diff)
Add transparent theme based on base16_default (#3216)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/themes/base16_transparent.toml71
1 files changed, 71 insertions, 0 deletions
diff --git a/runtime/themes/base16_transparent.toml b/runtime/themes/base16_transparent.toml
new file mode 100644
index 00000000..5ed331a6
--- /dev/null
+++ b/runtime/themes/base16_transparent.toml
@@ -0,0 +1,71 @@
+# Author: GreasySlug <9619abgoni@gmail.com>
+
+"ui.background" = { fg = "white"}
+"ui.background.separator" = { fg = "gray" }
+"ui.menu" = { fg = "greay" }
+"ui.menu.selected" = { modifiers = ["reversed"] }
+"ui.menu.scroll" = { fg = "light-gray" }
+"ui.linenr" = { fg = "light-grey" }
+"ui.linenr.selected" = { fg = "white", modifiers = ["bold"] }
+"ui.popup" = { fg = "white" }
+"ui.window" = { fg = "white" }
+"ui.selection" = { modifiers = [ "reversed"] }
+"comment" = { fg = "gray", modifiers = ["italic"] }
+"ui.statusline" = { fg = "white" }
+"ui.statusline.inactive" = { fg = "gray" }
+"ui.statusline.normal" = { fg = "blue", modifiers = ["reversed"] }
+"ui.statusline.insert" = { fg = "green", modifiers = ["reversed"] }
+"ui.statusline.select" = { fg = "magenta", modifiers = ["reversed"] }
+"ui.help" = { fg = "light-gray" }
+"ui.cursor" = { modifiers = ["reversed"] }
+"ui.cursor.match" = { fg = "light-yellow", modifiers = ["underlined"] }
+"ui.cursor.primary" = { modifiers = ["reversed", "slow_blink"] }
+"ui.cursor.secondary" = { modifiers = ["reversed"] }
+"ui.virtual.ruler" = { fg = "gray", modifiers = ["reversed"] }
+"ui.virtual.whitespace" = "gray"
+"ui.virtual.indent-guide" = "gray"
+
+"variable" = "light-red"
+"constant.numeric" = "yellow"
+"constant" = "yellow"
+"attributes" = "yellow"
+"type" = "light-yellow"
+"string" = "light-green"
+"variable.other.member" = "green"
+"constant.character.escape" = "light-cyan"
+"function" = "light-blue"
+"constructor" = "light-blue"
+"special" = "light-blue"
+"keyword" = "light-magenta"
+"label" = "light-magenta"
+"namespace" = "light-magenta"
+
+"markup.heading" = "light-blue"
+"markup.list" = "light-red"
+"markup.bold" = { fg = "light-yellow", modifiers = ["bold"] }
+"markup.italic" = { fg = "light-magenta", modifiers = ["italic"] }
+"markup.link.url" = { fg = "yellow", modifiers = ["underlined"] }
+"markup.link.text" = "light-red"
+"markup.quote" = "light-cyan"
+"markup.raw" = "green"
+"markup.normal" = { fg = "blue" }
+"markup.insert" = { fg = "green" }
+"markup.select" = { fg = "purple" }
+
+"diff.plus" = "light-green"
+"diff.delta" = "yellow"
+"diff.minus" = "light-red"
+
+"ui.gutter" = "gray"
+"info" = "light-blue"
+"hint" = "gray"
+"debug" = "gray"
+"warning" = "yellow"
+"error" = "light-red"
+
+"diagnostic" = { modifiers = ["underlined"] }
+"diagnostic.info" = { fg = "light-blue", modifiers = ["underlined"] }
+"diagnostic.hint" = { fg = "gray", modifiers = ["underlined"] }
+"diagnostic.debug" ={ fg ="gray", modifiers = ["underlined"] }
+"diagnostic.warning" = { fg = "yellow", modifiers = ["underlined"] }
+"diagnostic.error" = { fg ="light-red", modifiers = ["underlined"] }