1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# author: Gael Lopes Da Silva
# project: Yellowed
# github: https://github.com/Gael-Lopes-Da-Silva/YellowedHelix
"attribute" = { fg = "text" }
"type" = { fg = "text" }
"type.builtin" = { fg = "keywords" }
"type.enum" = { fg = "keywords" }
"constructor" = { fg = "text", modifiers = ["bold"] }
"constant" = { fg = "text", modifiers = ["bold"] }
"constant.builtin" = { fg = "constants", modifiers = ["bold"] }
"constant.character" = { fg = "string" }
"constant.character.escape" = { fg = "constants", modifiers = ["bold"] }
"constant.numeric" = { fg = "keywords" }
"string" = { fg = "string" }
"string.regexp" = { fg = "constants" }
"comment" = { fg = "comment" }
"variable" = { fg = "text" }
"variable.builtin" = { fg = "keywords" }
"variable.parameter" = { fg = "text", modifiers = ["italic"] }
"label" = { fg = "text" }
"punctuation" = { fg = "text" }
"punctuation.special" = { fg = "constants", modifiers = ["bold"] }
"keyword" = { fg = "keywords", modifiers = ["bold"] }
"keyword.control" = { fg = "keywords" }
"keyword.control.return" = { fg = "keywords", modifiers = ["bold"] }
"keyword.operator" = { fg = "keywords" }
"keyword.directive" = { fg = "keywords" }
"operator" = { fg = "keywords" }
"function" = { fg = "text", modifiers = ["bold"] }
"tag" = { fg = "keywords", modifiers = ["bold"] }
"namespace" = { fg = "text" }
"special" = { fg = "yellow" }
"markup.heading.marker" = { fg = "keywords", modifiers = ["bold"] }
"markup.heading.1" = { fg = "text", modifiers = ["bold"] }
"markup.heading.2" = { fg = "text", modifiers = ["bold"] }
"markup.heading.3" = { fg = "text", modifiers = ["bold"] }
"markup.heading.4" = { fg = "text", modifiers = ["bold"] }
"markup.heading.5" = { fg = "text", modifiers = ["bold"] }
"markup.heading.6" = { fg = "text", modifiers = ["bold"] }
"markup.list" = { fg = "keywords", modifiers = ["bold"] }
"markup.bold" = { modifiers = ["bold"] }
"markup.italic" = { modifiers = ["italic"] }
"markup.link.url" = { fg = "text", modifiers = ["underlined"] }
"markup.link.text" = { fg = "string" }
"markup.quote" = { fg = "text" }
"markup.raw" = { fg = "string" }
"diff.plus" = { fg = "green" }
"diff.minus" = { fg = "red" }
"diff.delta" = { fg = "blue" }
"diff.delta.moved" = { fg = "gray" }
"ui.background" = { bg = "dark_gray", fg = "text" }
"ui.background.separator" = { fg = "text" }
"ui.cursor" = { bg = "yellow", fg = "black" }
"ui.cursor.normal" = { bg = "yellow", fg = "black" }
"ui.cursor.insert" = { bg = "yellow", fg = "black" }
"ui.cursor.select" = { bg = "yellow", fg = "black" }
"ui.cursor.match" = { bg = "light_gray" }
"ui.cursor.primary" = { bg = "yellow", fg = "black" }
"ui.cursor.primary.normal" = { bg = "yellow", fg = "black" }
"ui.cursor.primary.insert" = { bg = "yellow", fg = "black" }
"ui.cursor.primary.select" = { bg = "yellow", fg = "black" }
"ui.debug.breakpoint" = { fg = "red" }
"ui.debug.active" = { fg = "green" }
"ui.gutter" = { fg = "light_gray" }
"ui.gutter.selected" = { fg = "light_gray" }
"ui.highlight.frameline" = { fg = "gray" }
"ui.linenr" = { fg = "light_gray" }
"ui.linenr.selected" = { fg = "yellow" }
"ui.statusline" = { fg = "text", bg = "gray" }
"ui.statusline.inactive" = { fg = "light_gray", bg = "gray" }
"ui.statusline.normal" = { bg = "light_gray" }
"ui.statusline.insert" = { bg = "green" }
"ui.statusline.select" = { bg = "purple" }
"ui.statusline.separator" = { fg = "dark_gray" }
"ui.popup" = { bg = "menu", fg = "text" }
"ui.popup.info" = { bg = "menu", fg = "text" }
"ui.window" = { fg = "text" }
"ui.help" = { fg = "text", bg = "menu" }
"ui.text" = { fg = "text" }
"ui.text.focus" = { bg = "gray" }
"ui.text.inactive" = { fg = "text" }
"ui.text.info" = { fg = "text" }
"ui.virtual.ruler" = { bg = "light_gray" }
"ui.virtual.whitespace" = { fg = "light_gray" }
"ui.virtual.indent-guide" = { fg = "light_gray" }
"ui.virtual.inlay-hint" = { fg = "light_gray" }
"ui.virtual.inlay-hint.parameter" = { fg = "light_gray" }
"ui.virtual.inlay-hint.type" = { fg = "light_gray" }
"ui.virtual.wrap" = { fg = "light_gray" }
"ui.menu" = { fg = "text", bg = "gray" }
"ui.menu.selected" = { fg = "text", bg = "light_gray", modifiers = ["bold"] }
"ui.menu.scroll" = { fg = "light_gray", bg = "dark_gray" }
"ui.selection" = { bg = "selection" }
"ui.selection.primary" = { bg = "selection" }
"ui.highlight" = { bg = "light_gray" }
"ui.cursorline.primary" = { bg = "gray" }
"ui.cursorline.secondary" = { bg = "gray" }
"ui.cursorcolumn.primary" = { bg = "gray" }
"ui.cursorcolumn.secondary" = { bg = "gray" }
"warning" = { fg = "warning" }
"error" = { fg = "error" }
"info" = { fg = "info" }
"hint" = { fg = "hint" }
"diagnostic.warning" = { underline = { color = "warning", style = "curl" } }
"diagnostic.error" = { underline = { color = "error", style = "curl" } }
"diagnostic.info" = { underline = { color = "info", style = "curl" } }
"diagnostic.hint" = { underline = { color = "hint", style = "curl" } }
[palette]
# interface
yellow = "#ffd900"
gray = "#2a2a2a"
dark_gray = "#242424"
light_gray = "#545454"
purple = "#994c92"
blue = "#008DFF"
menu = "#202020"
selection = "#3f3f3f"
# syntax
text = "#FFFFFF"
comment = "#6b6b6b"
string = "#378b1d"
constants = "#ff80f4"
keywords = "#ffd900"
warning = "#FF9C00"
error = "#FF0000"
info = "#0092FF"
hint = "#4DFF00"
|