-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolorschemes.lua
More file actions
247 lines (229 loc) · 8.46 KB
/
colorschemes.lua
File metadata and controls
247 lines (229 loc) · 8.46 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
-- Colorschemes Plugin Configuration
-- No theme is forced here.
return {
{
"philosofonusus/morta.nvim",
name = "morta",
lazy = true,
priority = 1000,
opts = {
styles = {
transparency = true,
italic = true,
bold = false,
},
},
},
{
"sainnhe/gruvbox-material",
lazy = true,
priority = 1000,
config = function()
vim.g.gruvbox_material_background = "hard"
vim.g.gruvbox_material_foreground = "material" -- change to mix/original if you want
vim.g.gruvbox_material_transparent_background = 1
vim.g.gruvbox_material_enable_italic = true
vim.g.gruvbox_material_enable_bold = true
end,
},
{
"folke/tokyonight.nvim",
opts = {
style = "night",
transparent = true,
terminal_colors = true,
styles = {
comments = { italic = true },
keywords = { italic = true },
sidebars = "dark",
floats = "dark",
},
on_colors = function(colors)
-- Core backgrounds
colors.bg = "#1a1b26"
colors.bg_dark = "#16161e"
colors.bg_float = "#16161e"
colors.bg_sidebar = "#1d1f2d"
colors.bg_statusline = "#1d1f2d"
colors.bg_popup = "#1d1f2d"
-- Foreground
colors.fg = "#c0caf5"
colors.fg_dark = "#a9b1d6"
colors.fg_gutter = "#484b5c"
-- UI
colors.border = "#414868"
colors.comment = "#627082"
colors.accent = "#7aa2f7"
-- Base colors
colors.blue = "#7aa2f7"
colors.cyan = "#7dcfff"
colors.green = "#9ece6a"
colors.magenta = "#bb9af7"
colors.orange = "#ff9e64"
colors.purple = "#bb9af7"
colors.red = "#f77676"
colors.yellow = "#e0af68"
-- Git
colors.git = {
add = "#81b88b",
change = "#e2c08d",
delete = "#c74e39",
}
colors.gitSigns = {
add = "#5b8430",
change = "#7aa2f7",
delete = "#d54242",
}
-- Search / Visual
colors.bg_search = "#414868"
colors.bg_visual = "#1f253f"
colors.bg_highlight = "#202437"
-- Diff (solid equivalents of VS Code alpha colors)
colors.bg_diff_add = "#1f3d2b"
colors.bg_diff_delete = "#3d1f25"
colors.bg_diff_change = "#3a2f1a"
colors.bg_diff_text = "#4a3b1f"
end,
},
},
{
"catppuccin/nvim",
name = "catppuccin",
lazy = true,
priority = 1000,
opts = {
flavour = "mocha",
transparent_background = true,
styles = {
comments = { "italic" },
keywords = { "italic" },
},
color_overrides = {
mocha = {
-- Editor & UI Backgrounds
base = "#121314", -- editor.background
mantle = "#191a1b", -- sideBar.background / terminal.background
crust = "#0f1011", -- Deepest background (slightly darker than base)
-- UI Foregrounds & Borders
text = "#bfbfbf", -- foreground
subtext1 = "#bbbebf", -- editor.foreground
subtext0 = "#a0a0a0",
overlay2 = "#8c8c8c", -- descriptionForeground / inactive elements
overlay1 = "#858889", -- editorLineNumber.foreground
overlay0 = "#555555", -- disabledForeground
surface2 = "#333536", -- input.border
surface1 = "#2a2b2c", -- activityBar.border / tab.border
surface0 = "#202122", -- editorWidget.background / menus
-- Syntax & Accent Colors
blue = "#569CD6", -- keyword / constant.language
sapphire = "#3994bc", -- activityBarBadge (UI Accent)
sky = "#9CDCFE", -- variable.other / object keys
teal = "#4EC9B0", -- support.class / types
green = "#73c991", -- git added / strings
yellow = "#e5ba7d", -- warnings / git modified
peach = "#FFA657", -- markup/variables
maroon = "#CE9178", -- string.value
red = "#f48771", -- errorForeground
mauve = "#D2A8FF", -- entity.name.function
pink = "#C586C0", -- keyword.control
flamingo = "#D16969", -- string.regexp
rosewater = "#f28772", -- editorGutter.deleted
},
},
custom_highlights = function(colors)
return {
-- Syntax adjustments
Comment = { fg = "#8B949E", style = { "italic" } },
String = { fg = "#CE9178" },
Keyword = { fg = "#569CD6", style = { "italic" } },
Function = { fg = "#DCDCAA", style = { "italic" } },
Type = { fg = "#4EC9B0" },
Variable = { fg = "#9CDCFE" },
Constant = { fg = "#79C0FF" },
Number = { fg = "#B5CEA8" },
Boolean = { fg = "#569CD6" },
-- Editor UI
LineNr = { fg = colors.overlay1 },
CursorLineNr = { fg = colors.subtext1 },
CursorLine = { bg = "#242526" },
ColorColumn = { bg = "#242526" },
-- Selections
Visual = { bg = "#276782" },
Search = { bg = "#276782", fg = colors.text },
IncSearch = { bg = "#3994bc", fg = colors.base },
-- Popups / Menus
Pmenu = { bg = colors.surface0, fg = colors.text },
PmenuSel = { bg = "#3994bc", fg = "#ffffff" },
PmenuSbar = { bg = colors.surface1 },
PmenuThumb = { bg = colors.overlay0 },
-- Telescope
TelescopeNormal = { bg = colors.surface0 },
TelescopeBorder = { bg = colors.surface0, fg = colors.surface1 },
TelescopePromptNormal = { bg = colors.mantle },
TelescopePromptBorder = { bg = colors.mantle, fg = colors.surface1 },
-- Tree Explorers
NvimTreeNormal = { bg = colors.mantle },
NvimTreeWinSeparator = { fg = colors.surface1 },
-- Diagnostics
DiagnosticError = { fg = colors.red },
DiagnosticWarn = { fg = colors.yellow },
DiagnosticInfo = { fg = colors.sapphire },
DiagnosticHint = { fg = colors.overlay2 },
}
end,
},
},
{
"rebelot/kanagawa.nvim",
lazy = true,
priority = 1000,
opts = {
transparent = false,
commentStyle = { italic = true },
keywordStyle = { italic = true },
},
},
{
"rose-pine/neovim",
name = "rose-pine",
lazy = true,
priority = 1000,
opts = {
styles = {
transparency = true,
italic = true,
},
},
},
{
"navarasu/onedark.nvim",
name = "onedark",
lazy = true,
priority = 1000,
opts = {
style = "cool",
transparent = false,
},
},
{
"craftzdog/solarized-osaka.nvim",
lazy = true,
priority = 1000,
opts = {
transparent = false,
styles = {
comments = { italic = true },
keywords = { italic = true },
},
dim_inactive = true,
},
},
{
"tiagovla/tokyodark.nvim",
lazy = true,
priority = 1000,
opts = {
transparent_background = false,
},
},
}