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
|
# A port of Neovim's default dark color scheme created by echasnovski: https://github.com/neovim/neovim/pull/26334
# Based on Kim Nørgaard's Neovim dark (accented) theme for Zed: https://github.com/KimNorgaard/zed-neovim-default
attribute = "fog"
keyword = { fg = "fog", modifiers = ["bold"] }
"keyword.directive" = { fg = "fog", modifiers = ["bold"] }
namespace = "fog"
punctuation = "fog"
"punctuation.delimiter" = "fog"
operator = "fog"
special = "aqua"
"variable.other.member" = "sky"
variable = "fog"
"variable.parameter" = { fg = "aqua" }
"variable.builtin" = "aqua"
type = "fog"
"type.builtin" = "aqua"
constructor = "aqua"
function = "aqua"
"function.macro" = "fog"
"function.builtin" = "aqua"
tag = "aqua"
comment = "stone"
constant = "fog"
"constant.builtin" = "fog"
string = "leaf"
"constant.numeric" = "fog"
"constant.character.escape" = "aqua"
label = { fg = "fog", modifiers = ["bold"] }
tabstop = { modifiers = ["italic"], bg = "panel"}
"markup.heading" = "fog"
"markup.bold" = { modifiers = ["bold"] }
"markup.italic" = { modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.link.url" = { fg = "aqua", modifiers = ["italic"] }
"markup.link.text" = "aqua"
"markup.raw" = "aqua"
"diff.plus" = "leaf"
"diff.minus" = "rose"
"diff.delta" = "sun"
"ui.background" = { bg = "night" }
"ui.background.separator" = { fg = "panel" }
"ui.linenr" = { fg = "slate" }
"ui.linenr.selected" = { fg = "fog" }
"ui.statusline" = { fg = "fog", bg = "panel" }
"ui.statusline.inactive" = { fg = "stone", bg = "panel" }
"ui.statusline.normal" = { bg = "aqua", fg = "panel" }
"ui.statusline.insert" = { bg = "leaf", fg = "panel" }
"ui.statusline.select" = { bg = "sky", fg = "panel" }
"ui.popup" = { bg = "panel" }
"ui.window" = { fg = "panel" }
"ui.help" = { bg = "panel", fg = "fog" }
"ui.text" = { fg = "fog" }
"ui.text.focus" = { fg = "fog" }
"ui.text.inactive" = "stone"
"ui.text.directory" = { fg = "sky" }
"ui.virtual" = { fg = "slate" }
"ui.virtual.ruler" = { bg = "panel" }
"ui.virtual.jump-label" = { fg = "sun", modifiers = ["bold"] }
"ui.virtual.indent-guide" = { fg = "slate" }
"ui.selection" = { bg = "oxford" }
"ui.selection.primary" = { bg = "oxford" }
"ui.cursor.select" = { bg = "aqua" }
"ui.cursor.insert" = { bg = "fog" }
"ui.cursor.primary.select" = { bg = "aqua" }
"ui.cursor.primary.insert" = { bg = "fog" }
"ui.cursor.match" = { fg = "night", bg = "slate" }
"ui.cursor" = { modifiers = ["reversed"] }
"ui.cursorline.primary" = { bg = "panel" }
"ui.highlight" = { bg = "panel" }
"ui.highlight.frameline" = { bg = "slate" }
"ui.debug" = { fg = "slate" }
"ui.debug.breakpoint" = { fg = "sun" }
"ui.menu" = { fg = "fog", bg = "panel" }
"ui.menu.selected" = { fg = "night", bg = "fog" }
"ui.menu.scroll" = { fg = "fog", bg = "panel" }
"diagnostic.hint" = { underline = { color = "stone", style = "curl" } }
"diagnostic.info" = { underline = { color = "aqua", style = "curl" } }
"diagnostic.warning" = { underline = { color = "sun", style = "curl" } }
"diagnostic.error" = { underline = { color = "rose", style = "curl" } }
"diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] }
warning = "sun"
error = "rose"
info = "aqua"
hint = "stone"
[palette]
fog = "#e0e2ea"
stone = "#9b9ea4"
night = "#14161b"
panel = "#2c2e33"
slate = "#4f5258"
aqua = "#8cf8f7"
leaf = "#b3f6c0"
sun = "#fce094"
rose = "#ffc0b9"
sky = "#a6dbff"
oxford = "#0D2847"
|