Skip to content

Commit 14eca31

Browse files
authored
Add transparent theme based on base16_default (#3216)
1 parent a1c9690 commit 14eca31

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Author: GreasySlug <[email protected]>
2+
3+
"ui.background" = { fg = "white"}
4+
"ui.background.separator" = { fg = "gray" }
5+
"ui.menu" = { fg = "greay" }
6+
"ui.menu.selected" = { modifiers = ["reversed"] }
7+
"ui.menu.scroll" = { fg = "light-gray" }
8+
"ui.linenr" = { fg = "light-grey" }
9+
"ui.linenr.selected" = { fg = "white", modifiers = ["bold"] }
10+
"ui.popup" = { fg = "white" }
11+
"ui.window" = { fg = "white" }
12+
"ui.selection" = { modifiers = [ "reversed"] }
13+
"comment" = { fg = "gray", modifiers = ["italic"] }
14+
"ui.statusline" = { fg = "white" }
15+
"ui.statusline.inactive" = { fg = "gray" }
16+
"ui.statusline.normal" = { fg = "blue", modifiers = ["reversed"] }
17+
"ui.statusline.insert" = { fg = "green", modifiers = ["reversed"] }
18+
"ui.statusline.select" = { fg = "magenta", modifiers = ["reversed"] }
19+
"ui.help" = { fg = "light-gray" }
20+
"ui.cursor" = { modifiers = ["reversed"] }
21+
"ui.cursor.match" = { fg = "light-yellow", modifiers = ["underlined"] }
22+
"ui.cursor.primary" = { modifiers = ["reversed", "slow_blink"] }
23+
"ui.cursor.secondary" = { modifiers = ["reversed"] }
24+
"ui.virtual.ruler" = { fg = "gray", modifiers = ["reversed"] }
25+
"ui.virtual.whitespace" = "gray"
26+
"ui.virtual.indent-guide" = "gray"
27+
28+
"variable" = "light-red"
29+
"constant.numeric" = "yellow"
30+
"constant" = "yellow"
31+
"attributes" = "yellow"
32+
"type" = "light-yellow"
33+
"string" = "light-green"
34+
"variable.other.member" = "green"
35+
"constant.character.escape" = "light-cyan"
36+
"function" = "light-blue"
37+
"constructor" = "light-blue"
38+
"special" = "light-blue"
39+
"keyword" = "light-magenta"
40+
"label" = "light-magenta"
41+
"namespace" = "light-magenta"
42+
43+
"markup.heading" = "light-blue"
44+
"markup.list" = "light-red"
45+
"markup.bold" = { fg = "light-yellow", modifiers = ["bold"] }
46+
"markup.italic" = { fg = "light-magenta", modifiers = ["italic"] }
47+
"markup.link.url" = { fg = "yellow", modifiers = ["underlined"] }
48+
"markup.link.text" = "light-red"
49+
"markup.quote" = "light-cyan"
50+
"markup.raw" = "green"
51+
"markup.normal" = { fg = "blue" }
52+
"markup.insert" = { fg = "green" }
53+
"markup.select" = { fg = "purple" }
54+
55+
"diff.plus" = "light-green"
56+
"diff.delta" = "yellow"
57+
"diff.minus" = "light-red"
58+
59+
"ui.gutter" = "gray"
60+
"info" = "light-blue"
61+
"hint" = "gray"
62+
"debug" = "gray"
63+
"warning" = "yellow"
64+
"error" = "light-red"
65+
66+
"diagnostic" = { modifiers = ["underlined"] }
67+
"diagnostic.info" = { fg = "light-blue", modifiers = ["underlined"] }
68+
"diagnostic.hint" = { fg = "gray", modifiers = ["underlined"] }
69+
"diagnostic.debug" ={ fg ="gray", modifiers = ["underlined"] }
70+
"diagnostic.warning" = { fg = "yellow", modifiers = ["underlined"] }
71+
"diagnostic.error" = { fg ="light-red", modifiers = ["underlined"] }

0 commit comments

Comments
 (0)