Skip to content

Commit 2f4800a

Browse files
jzelinskiepostsolar
authored andcommitted
add monokai soda theme (helix-editor#9651)
1 parent d887cc1 commit 2f4800a

File tree

1 file changed

+120
-0
lines changed

1 file changed

+120
-0
lines changed

runtime/themes/monokai_soda.toml

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Monokai Soda port for Helix (https://helix-editor.com)
2+
# Author : Jimmy Zelinskie <[email protected]>
3+
4+
# Syntax
5+
6+
## Constants
7+
"constant" = "white"
8+
"constant.builtin" = "pink"
9+
"constant.character.escape" = "blue"
10+
"constant.numeric" = "purple"
11+
12+
## Diagnostics
13+
"diagnostic" = { modifiers = ["underlined"] }
14+
"diagnostic.error" = { underline = { style = "curl", color = "pink" } }
15+
"diagnostic.warning" = { underline = { style = "curl", color = "orange" } }
16+
"diagnostic.info" = { underline = { style = "curl", color = "white" } }
17+
18+
## Diffs
19+
"diff.plus" = "green"
20+
"diff.delta" = "orange"
21+
"diff.minus" = "pink"
22+
"diff.delta.moved" = "orange"
23+
24+
## Functions
25+
"function" = "green"
26+
"function.macro" = "blue"
27+
"function.builtin" = "pink"
28+
"constructor" = "blue"
29+
30+
## Keywords
31+
"keyword" = "pink"
32+
"keyword.directive" = "blue"
33+
34+
## Punctuation
35+
"punctuation" = "gray"
36+
37+
## Strings
38+
"string" = "yellow"
39+
40+
## Types
41+
"type" = "blue"
42+
"type.builtin" = "pink"
43+
44+
## Variables
45+
"variable" = "white"
46+
"variable.builtin" = "pink"
47+
"variable.other.member" = "white"
48+
"variable.parameter" = "softorange"
49+
50+
## Markup
51+
"markup.heading" = "green"
52+
"markup.bold" = { fg = "orange", modifiers = ["bold"] }
53+
"markup.italic" = { fg = "orange", modifiers = ["italic"] }
54+
"markup.link.url" = { fg = "orange", modifiers = ["underlined"] }
55+
"markup.link.text" = "yellow"
56+
"markup.quote" = "green"
57+
58+
## Misc
59+
"attribute" = "blue"
60+
"comment" = { fg = "gray", modifiers = ["italic"] }
61+
"error" = "pink"
62+
"hint" = "white"
63+
"info" = "white"
64+
"label" = "yellow"
65+
"module" = "softorange"
66+
"namespace" = "pink"
67+
"operator" = "pink"
68+
"special" = "softorange"
69+
"warning" = "orange"
70+
71+
# Editor UI
72+
73+
## Main
74+
"ui.background" = { bg = "background" }
75+
"ui.text" = "white"
76+
"ui.window" = { bg = "darkgray" }
77+
78+
## Debug (TODO)
79+
80+
## Menus
81+
"ui.menu" = { fg = "white", bg = "darkgray" }
82+
"ui.menu.selected" = { modifiers = ["reversed"] }
83+
"ui.popup" = { bg = "darkgray" }
84+
"ui.help" = { fg = "white", bg = "darkgray" }
85+
86+
## Gutter
87+
"ui.linenr" = "darkgray"
88+
"ui.linenr.selected" = "orange"
89+
90+
## Cursor
91+
"ui.cursor.primary" = { fg = "white", modifiers = ["reversed"] }
92+
"ui.cursor.match" = { fg = "white", modifiers = ["reversed"] }
93+
"ui.selection" = { bg = "darkgray" }
94+
95+
## Statusline
96+
"ui.statusline" = { bg = "darkgray" }
97+
"ui.statusline.inactive" = { fg = "white", bg = "darkgray" }
98+
"ui.statusline.normal" = { fg = "white", bg = "blue" }
99+
"ui.statusline.insert" = { fg = "white", bg = "green" }
100+
"ui.statusline.select" = { fg = "white", bg = "purple" }
101+
102+
"ui.text.focus" = { fg = "yellow", modifiers = ["bold"] }
103+
"ui.virtual" = "darkgray"
104+
"ui.virtual.ruler" = { bg = "darkgray" }
105+
106+
# Palette
107+
108+
[palette]
109+
"purple" = "#AE81FF"
110+
"yellow" = "#E6DB74"
111+
"pink" = "#f92a72"
112+
"white" = "#cfcfc2"
113+
"gray" = "#75715e"
114+
"darkgray" = "#444444"
115+
"black" = "#222222"
116+
"blue" = "#66d9ef"
117+
"green" = "#a6e22e"
118+
"softorange" = "#f59762"
119+
"orange" = "#fd971f"
120+
"background" = "#191919"

0 commit comments

Comments
 (0)