format files

v2.5
siduck 3 years ago
parent 8195ffa939
commit ca546ccacd

@ -1,6 +1,6 @@
column_width = 120 column_width = 120
line_endings = "Unix" line_endings = "Unix"
indent_type = "Spaces" indent_type = "Spaces"
indent_width = 3 indent_width = 2
quote_style = "AutoPreferDouble" quote_style = "AutoPreferDouble"
call_parentheses = "None" call_parentheses = "None"

@ -7,15 +7,15 @@ local highlights = {}
local hl_files = vim.fn.stdpath "data" .. "/site/pack/packer/start/base46/lua/base46/integrations" local hl_files = vim.fn.stdpath "data" .. "/site/pack/packer/start/base46/lua/base46/integrations"
for _, file in ipairs(vim.fn.readdir(hl_files)) do for _, file in ipairs(vim.fn.readdir(hl_files)) do
local integration = require("base46.integrations." .. vim.fn.fnamemodify(file, ":r")) local integration = require("base46.integrations." .. vim.fn.fnamemodify(file, ":r"))
highlights = merge_tb(highlights, integration) highlights = merge_tb(highlights, integration)
end end
-- polish theme specific highlights -- polish theme specific highlights
local polish_hl = require("base46").get_theme_tb "polish_hl" local polish_hl = require("base46").get_theme_tb "polish_hl"
if polish_hl then if polish_hl then
highlights = merge_tb(highlights, polish_hl) highlights = merge_tb(highlights, polish_hl)
end end
-- override user highlights if there are any -- override user highlights if there are any
@ -26,22 +26,22 @@ local colors = require("base46").get_theme_tb "base_30"
-- so no need for the user to import colors -- so no need for the user to import colors
for group, _ in pairs(user_highlights) do for group, _ in pairs(user_highlights) do
for key, val in pairs(user_highlights[group]) do for key, val in pairs(user_highlights[group]) do
if key == "fg" or key == "bg" then if key == "fg" or key == "bg" then
if val:sub(1, 1) == "#" or val == "none" or val == "NONE" then if val:sub(1, 1) == "#" or val == "none" or val == "NONE" then
user_highlights[group][key] = val user_highlights[group][key] = val
else else
user_highlights[group][key] = colors[val] user_highlights[group][key] = colors[val]
end
end end
end end
end
end end
highlights = merge_tb(highlights, user_highlights) highlights = merge_tb(highlights, user_highlights)
-- local set_transparent = nvchad.load_config().ui.transparency -- local set_transparent = nvchad.load_config().ui.transparency
if vim.g.transparency then if vim.g.transparency then
highlights = merge_tb(highlights, require "base46.glassy") highlights = merge_tb(highlights, require "base46.glassy")
end end
return highlights return highlights

@ -6,13 +6,15 @@ local M = {}
-- @return g: Green (0-255) -- @return g: Green (0-255)
-- @return b: Blue (0-255) -- @return b: Blue (0-255)
M.hex2rgb = function(hex) M.hex2rgb = function(hex)
local hash = string.sub(hex, 1, 1) == "#" local hash = string.sub(hex, 1, 1) == "#"
if string.len(hex) ~= (7 - (hash and 0 or 1)) then return nil end if string.len(hex) ~= (7 - (hash and 0 or 1)) then
return nil
local r = tonumber(hex:sub(2 - (hash and 0 or 1), 3 - (hash and 0 or 1)), 16) end
local g = tonumber(hex:sub(4 - (hash and 0 or 1), 5 - (hash and 0 or 1)), 16)
local b = tonumber(hex:sub(6 - (hash and 0 or 1), 7 - (hash and 0 or 1)), 16) local r = tonumber(hex:sub(2 - (hash and 0 or 1), 3 - (hash and 0 or 1)), 16)
return r, g, b local g = tonumber(hex:sub(4 - (hash and 0 or 1), 5 - (hash and 0 or 1)), 16)
local b = tonumber(hex:sub(6 - (hash and 0 or 1), 7 - (hash and 0 or 1)), 16)
return r, g, b
end end
-- Convert an RGB color value to hex -- Convert an RGB color value to hex
@ -21,18 +23,27 @@ end
-- @param b: Blue (0-255) -- @param b: Blue (0-255)
-- @return The hexadecimal string representation of the color -- @return The hexadecimal string representation of the color
M.rgb2hex = function(r, g, b) M.rgb2hex = function(r, g, b)
return string.format("#%02x%02x%02x", math.floor(r), math.floor(g), math.floor(b)) return string.format("#%02x%02x%02x", math.floor(r), math.floor(g), math.floor(b))
end end
-- Helper function to convert a HSL color value to RGB -- Helper function to convert a HSL color value to RGB
-- Not to be used directly, use M.hsl2rgb instead -- Not to be used directly, use M.hsl2rgb instead
M.hsl2rgb_helper = function(p, q, a) M.hsl2rgb_helper = function(p, q, a)
if (a < 0) then a = a + 6 end if a < 0 then
if (a >= 6) then a = a - 6 end a = a + 6
if (a < 1) then return (q - p) * a + p end
elseif (a < 3) then return q if a >= 6 then
elseif (a < 4) then return (q - p) * (4 - a) + p a = a - 6
else return p end end
if a < 1 then
return (q - p) * a + p
elseif a < 3 then
return q
elseif a < 4 then
return (q - p) * (4 - a) + p
else
return p
end
end end
-- Convert a HSL color value to RGB -- Convert a HSL color value to RGB
@ -43,21 +54,21 @@ end
-- @return g: Green (0-255) -- @return g: Green (0-255)
-- @return b: Blue (0-255) -- @return b: Blue (0-255)
M.hsl2rgb = function(h, s, l) M.hsl2rgb = function(h, s, l)
local t1, t2, r, g, b local t1, t2, r, g, b
h = h / 60 h = h / 60
if (l <= 0.5) then if l <= 0.5 then
t2 = l * (s + 1) t2 = l * (s + 1)
else else
t2 = l + s - (l * s) t2 = l + s - (l * s)
end end
t1 = l * 2 - t2 t1 = l * 2 - t2
r = M.hsl2rgb_helper(t1, t2, h + 2) * 255 r = M.hsl2rgb_helper(t1, t2, h + 2) * 255
g = M.hsl2rgb_helper(t1, t2, h) * 255 g = M.hsl2rgb_helper(t1, t2, h) * 255
b = M.hsl2rgb_helper(t1, t2, h - 2) * 255 b = M.hsl2rgb_helper(t1, t2, h - 2) * 255
return r, g, b return r, g, b
end end
-- Convert an RGB color value to HSL -- Convert an RGB color value to HSL
@ -68,33 +79,44 @@ end
-- @return s Saturation (0-1) -- @return s Saturation (0-1)
-- @return l Lightness (0-1) -- @return l Lightness (0-1)
M.rgb2hsl = function(r, g, b) M.rgb2hsl = function(r, g, b)
local min, max, l, s, maxcolor, h local min, max, l, s, maxcolor, h
r, g, b = r / 255, g / 255, b / 255 r, g, b = r / 255, g / 255, b / 255
min = math.min(r, g, b) min = math.min(r, g, b)
max = math.max(r, g, b) max = math.max(r, g, b)
maxcolor = 1 + (max == b and 2 or (max == g and 1 or 0)) maxcolor = 1 + (max == b and 2 or (max == g and 1 or 0))
if maxcolor == 1 then h = (g - b) / (max - min) if maxcolor == 1 then
elseif maxcolor == 2 then h = 2 + (b - r) / (max - min) h = (g - b) / (max - min)
elseif maxcolor == 3 then h = 4 + (r - g) / (max - min) end elseif maxcolor == 2 then
h = 2 + (b - r) / (max - min)
if not rawequal(type(h), 'number') then h = 0 end elseif maxcolor == 3 then
h = 4 + (r - g) / (max - min)
h = h * 60 end
if h < 0 then h = h + 360 end if not rawequal(type(h), "number") then
h = 0
l = (min + max) / 2 end
if min == max then h = h * 60
s = 0
else if h < 0 then
if l < 0.5 then s = (max - min) / (max + min) h = h + 360
else s = (max - min) / (2 - max - min) end end
end
l = (min + max) / 2
return h, s, l
if min == max then
s = 0
else
if l < 0.5 then
s = (max - min) / (max + min)
else
s = (max - min) / (2 - max - min)
end
end
return h, s, l
end end
-- Convert a hex color value to HSL -- Convert a hex color value to HSL
@ -103,8 +125,8 @@ end
-- @param s: Saturation (0-1) -- @param s: Saturation (0-1)
-- @param l: Lightness (0-1) -- @param l: Lightness (0-1)
M.hex2hsl = function(hex) M.hex2hsl = function(hex)
local r, g, b = M.hex2rgb(hex) local r, g, b = M.hex2rgb(hex)
return M.rgb2hsl(r, g, b) return M.rgb2hsl(r, g, b)
end end
-- Convert a HSL color value to hex -- Convert a HSL color value to hex
@ -113,8 +135,8 @@ end
-- @param l: Lightness (0-1) -- @param l: Lightness (0-1)
-- @returns hex color value -- @returns hex color value
M.hsl2hex = function(h, s, l) M.hsl2hex = function(h, s, l)
local r, g, b = M.hsl2rgb(h, s, l) local r, g, b = M.hsl2rgb(h, s, l)
return M.rgb2hex(r, g, b) return M.rgb2hex(r, g, b)
end end
-- Change the hue of a color by a given amount -- Change the hue of a color by a given amount
@ -123,11 +145,15 @@ end
-- Negative values decrease the hue, positive values increase it. -- Negative values decrease the hue, positive values increase it.
-- @return The hex color value -- @return The hex color value
M.change_hex_hue = function(hex, percent) M.change_hex_hue = function(hex, percent)
local h, s, l = M.hex2hsl(hex) local h, s, l = M.hex2hsl(hex)
h = h + (percent / 100) h = h + (percent / 100)
if h > 360 then h = 360 end if h > 360 then
if h < 0 then h = 0 end h = 360
return M.hsl2hex(h, s, l) end
if h < 0 then
h = 0
end
return M.hsl2hex(h, s, l)
end end
-- Desaturate or saturate a color by a given percentage -- Desaturate or saturate a color by a given percentage
@ -136,11 +162,15 @@ end
-- Negative values desaturate the color, positive values saturate it -- Negative values desaturate the color, positive values saturate it
-- @return The hex color value -- @return The hex color value
M.change_hex_saturation = function(hex, percent) M.change_hex_saturation = function(hex, percent)
local h, s, l = M.hex2hsl(hex) local h, s, l = M.hex2hsl(hex)
s = s + (percent / 100) s = s + (percent / 100)
if s > 1 then s = 1 end if s > 1 then
if s < 0 then s = 0 end s = 1
return M.hsl2hex(h, s, l) end
if s < 0 then
s = 0
end
return M.hsl2hex(h, s, l)
end end
-- Lighten or darken a color by a given percentage -- Lighten or darken a color by a given percentage
@ -149,11 +179,15 @@ end
-- Negative values darken the color, positive values lighten it -- Negative values darken the color, positive values lighten it
-- @return The hex color value -- @return The hex color value
M.change_hex_lightness = function(hex, percent) M.change_hex_lightness = function(hex, percent)
local h, s, l = M.hex2hsl(hex) local h, s, l = M.hex2hsl(hex)
l = l + (percent / 100) l = l + (percent / 100)
if l > 1 then l = 1 end if l > 1 then
if l < 0 then l = 0 end l = 1
return M.hsl2hex(h, s, l) end
if l < 0 then
l = 0
end
return M.hsl2hex(h, s, l)
end end
-- Compute a gradient between two colors -- Compute a gradient between two colors
@ -162,22 +196,22 @@ end
-- @param steps The number of steps to compute -- @param steps The number of steps to compute
-- @return A table of hex color values -- @return A table of hex color values
M.compute_gradient = function(hex1, hex2, steps) M.compute_gradient = function(hex1, hex2, steps)
local h1, s1, l1 = M.hex2hsl(hex1) local h1, s1, l1 = M.hex2hsl(hex1)
local h2, s2, l2 = M.hex2hsl(hex2) local h2, s2, l2 = M.hex2hsl(hex2)
local h, s, l local h, s, l
local h_step = (h2 - h1) / (steps - 1) local h_step = (h2 - h1) / (steps - 1)
local s_step = (s2 - s1) / (steps - 1) local s_step = (s2 - s1) / (steps - 1)
local l_step = (l2 - l1) / (steps - 1) local l_step = (l2 - l1) / (steps - 1)
local gradient = {} local gradient = {}
for i = 0, steps - 1 do for i = 0, steps - 1 do
h = h1 + (h_step * i) h = h1 + (h_step * i)
s = s1 + (s_step * i) s = s1 + (s_step * i)
l = l1 + (l_step * i) l = l1 + (l_step * i)
gradient[i + 1] = M.hsl2hex(h, s, l) gradient[i + 1] = M.hsl2hex(h, s, l)
end end
return gradient return gradient
end end
return M return M

@ -1,48 +1,48 @@
local colors = require("base46").get_theme_tb "base_30" local colors = require("base46").get_theme_tb "base_30"
local M = { local M = {
NvimTreeWinSeparator = { NvimTreeWinSeparator = {
fg = colors.one_bg2, fg = colors.one_bg2,
bg = "NONE", bg = "NONE",
}, },
TelescopeResultsTitle = { TelescopeResultsTitle = {
fg = colors.black, fg = colors.black,
bg = colors.blue, bg = colors.blue,
}, },
} }
-- for hl groups which need bg = "NONE" only! -- for hl groups which need bg = "NONE" only!
local hl_groups = { local hl_groups = {
"NormalFloat", "NormalFloat",
"Normal", "Normal",
"Folded", "Folded",
"NvimTreeNormal", "NvimTreeNormal",
"NvimTreeNormalNC", "NvimTreeNormalNC",
"NvimTreeCursorLine", "NvimTreeCursorLine",
"TelescopeNormal", "TelescopeNormal",
"TelescopePrompt", "TelescopePrompt",
"TelescopeResults", "TelescopeResults",
"TelescopePromptNormal", "TelescopePromptNormal",
"TelescopePromptPrefix", "TelescopePromptPrefix",
"CursorLine", "CursorLine",
"Pmenu", "Pmenu",
} }
for _, groups in ipairs(hl_groups) do for _, groups in ipairs(hl_groups) do
M[groups] = { M[groups] = {
bg = "NONE", bg = "NONE",
} }
end end
M.TelescopeBorder = { M.TelescopeBorder = {
fg = colors.grey, fg = colors.grey,
bg = "NONE", bg = "NONE",
} }
M.TelescopePromptBorder = { M.TelescopePromptBorder = {
fg = colors.grey, fg = colors.grey,
bg = "NONE", bg = "NONE",
} }
return M return M

@ -3,183 +3,183 @@ local g = vim.g
local config = require("core.utils").load_config() local config = require("core.utils").load_config()
M.get_theme_tb = function(type) M.get_theme_tb = function(type)
local default_path = "base46.themes." .. g.nvchad_theme local default_path = "base46.themes." .. g.nvchad_theme
local user_path = "custom.themes." .. g.nvchad_theme local user_path = "custom.themes." .. g.nvchad_theme
local present1, default_theme = pcall(require, default_path) local present1, default_theme = pcall(require, default_path)
local present2, user_theme = pcall(require, user_path) local present2, user_theme = pcall(require, user_path)
if present1 then if present1 then
return default_theme[type] return default_theme[type]
elseif present2 then elseif present2 then
return user_theme[type] return user_theme[type]
else else
error "No such theme bruh >_< " error "No such theme bruh >_< "
end end
end end
M.merge_tb = function(table1, table2) M.merge_tb = function(table1, table2)
return vim.tbl_deep_extend("force", table1, table2) return vim.tbl_deep_extend("force", table1, table2)
end end
-- credits to https://github.com/max397574 for this function -- credits to https://github.com/max397574 for this function
M.clear_highlights = function(hl_group) M.clear_highlights = function(hl_group)
local highlights_raw = vim.split(vim.api.nvim_exec("filter " .. hl_group .. " hi", true), "\n") local highlights_raw = vim.split(vim.api.nvim_exec("filter " .. hl_group .. " hi", true), "\n")
local highlight_groups = {} local highlight_groups = {}
for _, raw_hi in ipairs(highlights_raw) do for _, raw_hi in ipairs(highlights_raw) do
table.insert(highlight_groups, string.match(raw_hi, hl_group .. "%a+")) table.insert(highlight_groups, string.match(raw_hi, hl_group .. "%a+"))
end end
for _, highlight in ipairs(highlight_groups) do for _, highlight in ipairs(highlight_groups) do
vim.cmd([[hi clear ]] .. highlight) vim.cmd([[hi clear ]] .. highlight)
end end
end end
M.load_all_highlights = function() M.load_all_highlights = function()
vim.opt.bg = require("base46").get_theme_tb "type" -- dark/light vim.opt.bg = require("base46").get_theme_tb "type" -- dark/light
-- reload highlights for theme switcher -- reload highlights for theme switcher
local reload = require("plenary.reload").reload_module local reload = require("plenary.reload").reload_module
local clear_hl = require("base46").clear_highlights local clear_hl = require("base46").clear_highlights
clear_hl "BufferLine" clear_hl "BufferLine"
clear_hl "TS" clear_hl "TS"
reload "base46.integrations" reload "base46.integrations"
reload "base46.chadlights" reload "base46.chadlights"
local hl_groups = require "base46.chadlights" local hl_groups = require "base46.chadlights"
for hl, col in pairs(hl_groups) do for hl, col in pairs(hl_groups) do
vim.api.nvim_set_hl(0, hl, col) vim.api.nvim_set_hl(0, hl, col)
end end
end end
M.turn_str_to_color = function(tb) M.turn_str_to_color = function(tb)
local colors = M.get_theme_tb "base_30" local colors = M.get_theme_tb "base_30"
for _, groups in pairs(tb) do for _, groups in pairs(tb) do
for k, v in pairs(groups) do for k, v in pairs(groups) do
if k == "fg" or k == "bg" then if k == "fg" or k == "bg" then
if v:sub(1, 1) == "#" or v == "none" or v == "NONE" then if v:sub(1, 1) == "#" or v == "none" or v == "NONE" then
else else
groups[k] = colors[v] groups[k] = colors[v]
end end
end
end end
end end
end
return tb return tb
end end
M.extend_default_hl = function(highlights) M.extend_default_hl = function(highlights)
local glassy = require "base46.glassy" local glassy = require "base46.glassy"
local polish_hl = M.get_theme_tb "polish_hl" local polish_hl = M.get_theme_tb "polish_hl"
-- polish themes
if polish_hl then
for key, value in pairs(polish_hl) do
if highlights[key] then
highlights[key] = M.merge_tb(highlights[key], value)
end
end
end
-- transparency
if vim.g.transparency then
for key, value in pairs(glassy) do
if highlights[key] then
highlights[key] = M.merge_tb(highlights[key], value)
end
end
end
local overriden_hl = M.turn_str_to_color(config.ui.hl_override) -- polish themes
if polish_hl then
for key, value in pairs(polish_hl) do
if highlights[key] then
highlights[key] = M.merge_tb(highlights[key], value)
end
end
end
for key, value in pairs(overriden_hl) do -- transparency
if vim.g.transparency then
for key, value in pairs(glassy) do
if highlights[key] then if highlights[key] then
highlights[key] = M.merge_tb(highlights[key], value) highlights[key] = M.merge_tb(highlights[key], value)
end end
end end
end
local overriden_hl = M.turn_str_to_color(config.ui.hl_override)
for key, value in pairs(overriden_hl) do
if highlights[key] then
highlights[key] = M.merge_tb(highlights[key], value)
end
end
end end
M.load_highlight = function(group) M.load_highlight = function(group)
if type(group) == "string" then if type(group) == "string" then
group = require("base46.integrations." .. group) group = require("base46.integrations." .. group)
M.extend_default_hl(group) M.extend_default_hl(group)
end end
for hl, col in pairs(group) do for hl, col in pairs(group) do
vim.api.nvim_set_hl(0, hl, col) vim.api.nvim_set_hl(0, hl, col)
end end
end end
M.load_theme = function() M.load_theme = function()
M.load_highlight "defaults" M.load_highlight "defaults"
M.load_highlight "statusline" M.load_highlight "statusline"
M.load_highlight(M.turn_str_to_color(config.ui.hl_add)) M.load_highlight(M.turn_str_to_color(config.ui.hl_add))
end end
M.override_theme = function(default_theme, theme_name) M.override_theme = function(default_theme, theme_name)
local changed_themes = config.ui.changed_themes local changed_themes = config.ui.changed_themes
if changed_themes[theme_name] then if changed_themes[theme_name] then
return M.merge_tb(default_theme, changed_themes[theme_name]) return M.merge_tb(default_theme, changed_themes[theme_name])
else else
return default_theme return default_theme
end end
end end
M.toggle_theme = function() M.toggle_theme = function()
local themes = config.ui.theme_toggle local themes = config.ui.theme_toggle
local theme1 = themes[1] local theme1 = themes[1]
local theme2 = themes[2] local theme2 = themes[2]
if g.nvchad_theme == theme1 or g.nvchad_theme == theme2 then if g.nvchad_theme == theme1 or g.nvchad_theme == theme2 then
if g.toggle_theme_icon == "" then if g.toggle_theme_icon == "" then
g.toggle_theme_icon = "" g.toggle_theme_icon = ""
else else
g.toggle_theme_icon = "" g.toggle_theme_icon = ""
end end
end end
if g.nvchad_theme == theme1 then if g.nvchad_theme == theme1 then
g.nvchad_theme = theme2 g.nvchad_theme = theme2
require("nvchad").reload_theme() require("nvchad").reload_theme()
require("nvchad").change_theme(theme1, theme2) require("nvchad").change_theme(theme1, theme2)
elseif g.nvchad_theme == theme2 then elseif g.nvchad_theme == theme2 then
g.nvchad_theme = theme1 g.nvchad_theme = theme1
require("nvchad").reload_theme() require("nvchad").reload_theme()
require("nvchad").change_theme(theme2, theme1) require("nvchad").change_theme(theme2, theme1)
else else
vim.notify "Set your current theme to one of those mentioned in the theme_toggle table (chadrc)" vim.notify "Set your current theme to one of those mentioned in the theme_toggle table (chadrc)"
end end
end end
M.toggle_transparency = function() M.toggle_transparency = function()
local transparency_status = config.ui.transparency local transparency_status = config.ui.transparency
local write_data = require("nvchad").write_data local write_data = require("nvchad").write_data
local function save_chadrc_data() local function save_chadrc_data()
local old_data = "transparency = " .. tostring(transparency_status) local old_data = "transparency = " .. tostring(transparency_status)
local new_data = "transparency = " .. tostring(g.transparency) local new_data = "transparency = " .. tostring(g.transparency)
write_data(old_data, new_data) write_data(old_data, new_data)
end end
if g.transparency then if g.transparency then
g.transparency = false g.transparency = false
M.load_all_highlights() M.load_all_highlights()
save_chadrc_data() save_chadrc_data()
else else
g.transparency = true g.transparency = true
M.load_all_highlights() M.load_all_highlights()
save_chadrc_data() save_chadrc_data()
end end
end end
return M return M

@ -1,6 +1,6 @@
local colors = require("base46").get_theme_tb "base_30" local colors = require("base46").get_theme_tb "base_30"
return { return {
AlphaHeader = { fg = colors.grey_fg }, AlphaHeader = { fg = colors.grey_fg },
AlphaButtons = { fg = colors.light_grey }, AlphaButtons = { fg = colors.light_grey },
} }

@ -1,8 +1,8 @@
local colors = require("base46").get_theme_tb "base_30" local colors = require("base46").get_theme_tb "base_30"
return { return {
IndentBlanklineChar = { fg = colors.line }, IndentBlanklineChar = { fg = colors.line },
IndentBlanklineSpaceChar = { fg = colors.line }, IndentBlanklineSpaceChar = { fg = colors.line },
IndentBlanklineContextChar = { fg = colors.grey }, IndentBlanklineContextChar = { fg = colors.grey },
IndentBlanklineContextStart = { bg = colors.one_bg2 }, IndentBlanklineContextStart = { bg = colors.one_bg2 },
} }

@ -2,128 +2,128 @@ local colors = require("base46").get_theme_tb "base_30"
return { return {
BufferLineBackground = { BufferLineBackground = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.black2, bg = colors.black2,
}, },
BufferlineIndicatorVisible = { BufferlineIndicatorVisible = {
fg = colors.black2, fg = colors.black2,
bg = colors.black2, bg = colors.black2,
}, },
-- buffers -- buffers
BufferLineBufferSelected = { BufferLineBufferSelected = {
fg = colors.white, fg = colors.white,
bg = colors.black, bg = colors.black,
}, },
BufferLineBufferVisible = { BufferLineBufferVisible = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.black2, bg = colors.black2,
}, },
-- for diagnostics = "nvim_lsp" -- for diagnostics = "nvim_lsp"
BufferLineError = { BufferLineError = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.black2, bg = colors.black2,
}, },
BufferLineErrorDiagnostic = { BufferLineErrorDiagnostic = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.black2, bg = colors.black2,
}, },
-- close buttons -- close buttons
BufferLineCloseButton = { BufferLineCloseButton = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.black2, bg = colors.black2,
}, },
BufferLineCloseButtonVisible = { BufferLineCloseButtonVisible = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.black2, bg = colors.black2,
}, },
BufferLineCloseButtonSelected = { BufferLineCloseButtonSelected = {
fg = colors.red, fg = colors.red,
bg = colors.black, bg = colors.black,
}, },
BufferLineFill = { BufferLineFill = {
fg = colors.grey_fg, fg = colors.grey_fg,
bg = colors.black2, bg = colors.black2,
}, },
BufferlineIndicatorSelected = { BufferlineIndicatorSelected = {
fg = colors.black, fg = colors.black,
bg = colors.black, bg = colors.black,
}, },
-- modified -- modified
BufferLineModified = { BufferLineModified = {
fg = colors.red, fg = colors.red,
bg = colors.black2, bg = colors.black2,
}, },
BufferLineModifiedVisible = { BufferLineModifiedVisible = {
fg = colors.red, fg = colors.red,
bg = colors.black2, bg = colors.black2,
}, },
BufferLineModifiedSelected = { BufferLineModifiedSelected = {
fg = colors.green, fg = colors.green,
bg = colors.black, bg = colors.black,
}, },
-- separators -- separators
BufferLineSeparator = { BufferLineSeparator = {
fg = colors.black2, fg = colors.black2,
bg = colors.black2, bg = colors.black2,
}, },
BufferLineSeparatorVisible = { BufferLineSeparatorVisible = {
fg = colors.black2, fg = colors.black2,
bg = colors.black2, bg = colors.black2,
}, },
BufferLineSeparatorSelected = { BufferLineSeparatorSelected = {
fg = colors.black2, fg = colors.black2,
bg = colors.black2, bg = colors.black2,
}, },
-- tabs -- tabs
BufferLineTab = { BufferLineTab = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.one_bg3, bg = colors.one_bg3,
}, },
BufferLineTabSelected = { BufferLineTabSelected = {
fg = colors.black2, fg = colors.black2,
bg = colors.nord_blue, bg = colors.nord_blue,
}, },
BufferLineTabClose = { BufferLineTabClose = {
fg = colors.red, fg = colors.red,
bg = colors.black, bg = colors.black,
}, },
BufferLineDevIconDefaultSelected = { BufferLineDevIconDefaultSelected = {
bg = "none", bg = "none",
}, },
BufferLineDevIconDefaultInactive = { BufferLineDevIconDefaultInactive = {
bg = "none", bg = "none",
}, },
BufferLineDuplicate = { BufferLineDuplicate = {
fg = "NONE", fg = "NONE",
bg = colors.black2, bg = colors.black2,
}, },
BufferLineDuplicateSelected = { BufferLineDuplicateSelected = {
fg = colors.red, fg = colors.red,
bg = colors.black, bg = colors.black,
}, },
BufferLineDuplicateVisible = { BufferLineDuplicateVisible = {
fg = colors.blue, fg = colors.blue,
bg = colors.black2, bg = colors.black2,
}, },
-- custom area -- custom area
BufferLineRightCustomAreaText1 = { BufferLineRightCustomAreaText1 = {
fg = colors.white, fg = colors.white,
}, },
BufferLineRightCustomAreaText2 = { BufferLineRightCustomAreaText2 = {
fg = colors.red, fg = colors.red,
}, },
} }

@ -2,40 +2,40 @@ local base16 = require("base46").get_theme_tb "base_16"
local colors = require("base46").get_theme_tb "base_30" local colors = require("base46").get_theme_tb "base_30"
return { return {
-- nvim cmp -- nvim cmp
CmpItemAbbr = { fg = colors.white }, CmpItemAbbr = { fg = colors.white },
CmpItemAbbrMatch = { fg = colors.blue, bold = true }, CmpItemAbbrMatch = { fg = colors.blue, bold = true },
CmpBorder = { fg = colors.grey }, CmpBorder = { fg = colors.grey },
CmpDocBorder = { fg = colors.darker_black, bg = colors.darker_black }, CmpDocBorder = { fg = colors.darker_black, bg = colors.darker_black },
CmPmenu = { bg = colors.darker_black }, CmPmenu = { bg = colors.darker_black },
-- cmp item kinds -- cmp item kinds
CmpItemKindConstant = { fg = base16.base09 }, CmpItemKindConstant = { fg = base16.base09 },
CmpItemKindFunction = { fg = base16.base0D }, CmpItemKindFunction = { fg = base16.base0D },
CmpItemKindIdentifier = { fg = base16.base08 }, CmpItemKindIdentifier = { fg = base16.base08 },
CmpItemKindField = { fg = base16.base08 }, CmpItemKindField = { fg = base16.base08 },
CmpItemKindVariable = { fg = base16.base0E }, CmpItemKindVariable = { fg = base16.base0E },
CmpItemKindSnippet = { fg = colors.red }, CmpItemKindSnippet = { fg = colors.red },
CmpItemKindText = { fg = base16.base0B }, CmpItemKindText = { fg = base16.base0B },
CmpItemKindStructure = { fg = base16.base0E }, CmpItemKindStructure = { fg = base16.base0E },
CmpItemKindType = { fg = base16.base0A }, CmpItemKindType = { fg = base16.base0A },
CmpItemKindKeyword = { fg = base16.base07 }, CmpItemKindKeyword = { fg = base16.base07 },
CmpItemKindMethod = { fg = base16.base0D }, CmpItemKindMethod = { fg = base16.base0D },
CmpItemKindConstructor = { fg = colors.blue }, CmpItemKindConstructor = { fg = colors.blue },
CmpItemKindFolder = { fg = base16.base07 }, CmpItemKindFolder = { fg = base16.base07 },
CmpItemKindModule = { fg = base16.base0A }, CmpItemKindModule = { fg = base16.base0A },
CmpItemKindProperty = { fg = base16.base08 }, CmpItemKindProperty = { fg = base16.base08 },
-- CmpItemKindEnum = { fg = "" }, -- CmpItemKindEnum = { fg = "" },
CmpItemKindUnit = { fg = base16.base0E }, CmpItemKindUnit = { fg = base16.base0E },
-- CmpItemKindClass = { fg = "" }, -- CmpItemKindClass = { fg = "" },
CmpItemKindFile = { fg = base16.base07 }, CmpItemKindFile = { fg = base16.base07 },
-- CmpItemKindInterface = { fg = "" }, -- CmpItemKindInterface = { fg = "" },
CmpItemKindColor = { fg = colors.red }, CmpItemKindColor = { fg = colors.red },
CmpItemKindReference = { fg = base16.base05 }, CmpItemKindReference = { fg = base16.base05 },
-- CmpItemKindEnumMember = { fg = "" }, -- CmpItemKindEnumMember = { fg = "" },
CmpItemKindStruct = { fg = base16.base0E }, CmpItemKindStruct = { fg = base16.base0E },
-- CmpItemKindValue = { fg = "" }, -- CmpItemKindValue = { fg = "" },
-- CmpItemKindEvent = { fg = "" }, -- CmpItemKindEvent = { fg = "" },
CmpItemKindOperator = { fg = base16.base05 }, CmpItemKindOperator = { fg = base16.base05 },
CmpItemKindTypeParameter = { fg = base16.base08 }, CmpItemKindTypeParameter = { fg = base16.base08 },
} }

@ -2,207 +2,207 @@ local colors = require("base46").get_theme_tb "base_30"
local theme = require("base46").get_theme_tb "base_16" local theme = require("base46").get_theme_tb "base_16"
return { return {
MatchWord = { MatchWord = {
bg = colors.grey, bg = colors.grey,
fg = colors.white, fg = colors.white,
}, },
Pmenu = { bg = colors.one_bg }, Pmenu = { bg = colors.one_bg },
PmenuSbar = { bg = colors.one_bg }, PmenuSbar = { bg = colors.one_bg },
PmenuSel = { bg = colors.pmenu_bg, fg = colors.black }, PmenuSel = { bg = colors.pmenu_bg, fg = colors.black },
PmenuThumb = { bg = colors.grey }, PmenuThumb = { bg = colors.grey },
MatchParen = { link = "MatchWord" }, MatchParen = { link = "MatchWord" },
Comment = { fg = colors.grey_fg }, Comment = { fg = colors.grey_fg },
CursorLineNr = { fg = colors.white }, CursorLineNr = { fg = colors.white },
LineNr = { fg = colors.grey }, LineNr = { fg = colors.grey },
-- floating windows -- floating windows
FloatBorder = { fg = colors.blue }, FloatBorder = { fg = colors.blue },
NormalFloat = { bg = colors.darker_black }, NormalFloat = { bg = colors.darker_black },
NvimInternalError = { fg = colors.red }, NvimInternalError = { fg = colors.red },
WinSeparator = { fg = colors.line }, WinSeparator = { fg = colors.line },
-- packer -- packer
PackerPackageName = { fg = colors.red }, PackerPackageName = { fg = colors.red },
PackerSuccess = { fg = colors.green }, PackerSuccess = { fg = colors.green },
PackerStatusSuccess = { fg = theme.base08 }, PackerStatusSuccess = { fg = theme.base08 },
PackerStatusCommit = { fg = colors.blue }, PackerStatusCommit = { fg = colors.blue },
PackeProgress = { fg = colors.blue }, PackeProgress = { fg = colors.blue },
PackerOutput = { fg = colors.red }, PackerOutput = { fg = colors.red },
PackerStatus = { fg = colors.blue }, PackerStatus = { fg = colors.blue },
PackerHash = { fg = colors.blue }, PackerHash = { fg = colors.blue },
Normal = { Normal = {
fg = theme.base05, fg = theme.base05,
bg = theme.base00, bg = theme.base00,
}, },
Bold = { Bold = {
bold = true, bold = true,
}, },
Debug = { Debug = {
fg = theme.base08, fg = theme.base08,
}, },
Directory = { Directory = {
fg = theme.base0D, fg = theme.base0D,
}, },
Error = { Error = {
fg = theme.base00, fg = theme.base00,
bg = theme.base08, bg = theme.base08,
}, },
ErrorMsg = { ErrorMsg = {
fg = theme.base08, fg = theme.base08,
bg = theme.base00, bg = theme.base00,
}, },
Exception = { Exception = {
fg = theme.base08, fg = theme.base08,
}, },
FoldColumn = { FoldColumn = {
fg = theme.base0C, fg = theme.base0C,
bg = theme.base01, bg = theme.base01,
}, },
Folded = { Folded = {
fg = theme.base03, fg = theme.base03,
bg = theme.base01, bg = theme.base01,
}, },
IncSearch = { IncSearch = {
fg = theme.base01, fg = theme.base01,
bg = theme.base09, bg = theme.base09,
}, },
Italic = { Italic = {
italic = true, italic = true,
}, },
Macro = { Macro = {
fg = theme.base08, fg = theme.base08,
}, },
ModeMsg = { ModeMsg = {
fg = theme.base0B, fg = theme.base0B,
}, },
MoreMsg = { MoreMsg = {
fg = theme.base0B, fg = theme.base0B,
}, },
Question = { Question = {
fg = theme.base0D, fg = theme.base0D,
}, },
Search = { Search = {
fg = theme.base01, fg = theme.base01,
bg = theme.base0A, bg = theme.base0A,
}, },
Substitute = { Substitute = {
fg = theme.base01, fg = theme.base01,
bg = theme.base0A, bg = theme.base0A,
sp = "none", sp = "none",
}, },
SpecialKey = { SpecialKey = {
fg = theme.base03, fg = theme.base03,
}, },
TooLong = { TooLong = {
fg = theme.base08, fg = theme.base08,
}, },
UnderLined = { UnderLined = {
fg = theme.base0B, fg = theme.base0B,
}, },
Visual = { Visual = {
bg = theme.base02, bg = theme.base02,
}, },
VisualNOS = { VisualNOS = {
fg = theme.base08, fg = theme.base08,
}, },
WarningMsg = { WarningMsg = {
fg = theme.base08, fg = theme.base08,
}, },
WildMenu = { WildMenu = {
fg = theme.base08, fg = theme.base08,
bg = theme.base0A, bg = theme.base0A,
}, },
Title = { Title = {
fg = theme.base0D, fg = theme.base0D,
sp = "none", sp = "none",
}, },
Conceal = { Conceal = {
bg = "NONE", bg = "NONE",
}, },
Cursor = { Cursor = {
fg = theme.base00, fg = theme.base00,
bg = theme.base05, bg = theme.base05,
}, },
NonText = { NonText = {
fg = theme.base03, fg = theme.base03,
}, },
SignColumn = { SignColumn = {
fg = theme.base03, fg = theme.base03,
sp = "NONE", sp = "NONE",
}, },
ColorColumn = { ColorColumn = {
bg = theme.base01, bg = theme.base01,
sp = "none", sp = "none",
}, },
CursorColumn = { CursorColumn = {
bg = theme.base01, bg = theme.base01,
sp = "none", sp = "none",
}, },
CursorLine = { CursorLine = {
bg = "none", bg = "none",
sp = "none", sp = "none",
}, },
QuickFixLine = { QuickFixLine = {
bg = theme.base01, bg = theme.base01,
sp = "none", sp = "none",
}, },
-- spell -- spell
SpellBad = { SpellBad = {
undercurl = true, undercurl = true,
sp = theme.base08, sp = theme.base08,
}, },
SpellLocal = { SpellLocal = {
undercurl = true, undercurl = true,
sp = theme.base0C, sp = theme.base0C,
}, },
SpellCap = { SpellCap = {
undercurl = true, undercurl = true,
sp = theme.base0D, sp = theme.base0D,
}, },
SpellRare = { SpellRare = {
undercurl = true, undercurl = true,
sp = theme.base0E, sp = theme.base0E,
}, },
} }

@ -1,32 +1,32 @@
local colors = require("base46").get_theme_tb "base_30" local colors = require("base46").get_theme_tb "base_30"
return { return {
DevIconDefault = { fg = colors.red }, DevIconDefault = { fg = colors.red },
DevIconc = { fg = colors.blue }, DevIconc = { fg = colors.blue },
DevIconcss = { fg = colors.blue }, DevIconcss = { fg = colors.blue },
DevIcondeb = { fg = colors.cyan }, DevIcondeb = { fg = colors.cyan },
DevIconDockerfile = { fg = colors.cyan }, DevIconDockerfile = { fg = colors.cyan },
DevIconhtml = { fg = colors.baby_pink }, DevIconhtml = { fg = colors.baby_pink },
DevIconjpeg = { fg = colors.dark_purple }, DevIconjpeg = { fg = colors.dark_purple },
DevIconjpg = { fg = colors.dark_purple }, DevIconjpg = { fg = colors.dark_purple },
DevIconjs = { fg = colors.sun }, DevIconjs = { fg = colors.sun },
DevIconkt = { fg = colors.orange }, DevIconkt = { fg = colors.orange },
DevIconlock = { fg = colors.red }, DevIconlock = { fg = colors.red },
DevIconlua = { fg = colors.blue }, DevIconlua = { fg = colors.blue },
DevIconmp3 = { fg = colors.white }, DevIconmp3 = { fg = colors.white },
DevIconmp4 = { fg = colors.white }, DevIconmp4 = { fg = colors.white },
DevIconout = { fg = colors.white }, DevIconout = { fg = colors.white },
DevIconpng = { fg = colors.dark_purple }, DevIconpng = { fg = colors.dark_purple },
DevIconpy = { fg = colors.cyan }, DevIconpy = { fg = colors.cyan },
DevIcontoml = { fg = colors.blue }, DevIcontoml = { fg = colors.blue },
DevIconts = { fg = colors.teal }, DevIconts = { fg = colors.teal },
DevIconttf = { fg = colors.white }, DevIconttf = { fg = colors.white },
DevIconrb = { fg = colors.pink }, DevIconrb = { fg = colors.pink },
DevIconrpm = { fg = colors.orange }, DevIconrpm = { fg = colors.orange },
DevIconvue = { fg = colors.vibrant_green }, DevIconvue = { fg = colors.vibrant_green },
DevIconwoff = { fg = colors.white }, DevIconwoff = { fg = colors.white },
DevIconwoff2 = { fg = colors.white }, DevIconwoff2 = { fg = colors.white },
DevIconxz = { fg = colors.sun }, DevIconxz = { fg = colors.sun },
DevIconzip = { fg = colors.sun }, DevIconzip = { fg = colors.sun },
DevIconZig = { fg = colors.orange }, DevIconZig = { fg = colors.orange },
} }

@ -3,96 +3,96 @@ local colors = require("base46").get_theme_tb "base_30"
return { return {
DiffAdd = { DiffAdd = {
fg = colors.blue, fg = colors.blue,
}, },
DiffAdded = { DiffAdded = {
fg = colors.green, fg = colors.green,
}, },
DiffChange = { DiffChange = {
fg = colors.light_grey, fg = colors.light_grey,
}, },
DiffChangeDelete = { DiffChangeDelete = {
fg = colors.red, fg = colors.red,
}, },
DiffModified = { DiffModified = {
fg = colors.orange, fg = colors.orange,
}, },
DiffDelete = { DiffDelete = {
fg = colors.red, fg = colors.red,
}, },
DiffRemoved = { DiffRemoved = {
fg = colors.red, fg = colors.red,
}, },
-- git commits -- git commits
gitcommitOverflow = { gitcommitOverflow = {
fg = theme.base08, fg = theme.base08,
}, },
gitcommitSummary = { gitcommitSummary = {
fg = theme.base08, fg = theme.base08,
}, },
gitcommitComment = { gitcommitComment = {
fg = theme.base03, fg = theme.base03,
}, },
gitcommitUntracked = { gitcommitUntracked = {
fg = theme.base03, fg = theme.base03,
}, },
gitcommitDiscarded = { gitcommitDiscarded = {
fg = theme.base03, fg = theme.base03,
}, },
gitcommitSelected = { gitcommitSelected = {
fg = theme.base03, fg = theme.base03,
}, },
gitcommitHeader = { gitcommitHeader = {
fg = theme.base0E, fg = theme.base0E,
}, },
gitcommitSelectedType = { gitcommitSelectedType = {
fg = theme.base0D, fg = theme.base0D,
}, },
gitcommitUnmergedType = { gitcommitUnmergedType = {
fg = theme.base0D, fg = theme.base0D,
}, },
gitcommitDiscardedType = { gitcommitDiscardedType = {
fg = theme.base0D, fg = theme.base0D,
}, },
gitcommitBranch = { gitcommitBranch = {
fg = theme.base09, fg = theme.base09,
bold = true, bold = true,
}, },
gitcommitUntrackedFile = { gitcommitUntrackedFile = {
fg = theme.base0A, fg = theme.base0A,
}, },
gitcommitUnmergedFile = { gitcommitUnmergedFile = {
fg = theme.base08, fg = theme.base08,
bold = true, bold = true,
}, },
gitcommitDiscardedFile = { gitcommitDiscardedFile = {
fg = theme.base08, fg = theme.base08,
bold = true, bold = true,
}, },
gitcommitSelectedFile = { gitcommitSelectedFile = {
fg = theme.base0B, fg = theme.base0B,
bold = true, bold = true,
}, },
} }

@ -1,18 +1,18 @@
local colors = require("base46").get_theme_tb "base_30" local colors = require("base46").get_theme_tb "base_30"
return { return {
-- LSP References -- LSP References
LspReferenceText = { fg = colors.darker_black, bg = colors.white }, LspReferenceText = { fg = colors.darker_black, bg = colors.white },
LspReferenceRead = { fg = colors.darker_black, bg = colors.white }, LspReferenceRead = { fg = colors.darker_black, bg = colors.white },
LspReferenceWrite = { fg = colors.darker_black, bg = colors.white }, LspReferenceWrite = { fg = colors.darker_black, bg = colors.white },
-- Lsp Diagnostics -- Lsp Diagnostics
DiagnosticHint = { fg = colors.purple }, DiagnosticHint = { fg = colors.purple },
DiagnosticError = { fg = colors.red }, DiagnosticError = { fg = colors.red },
DiagnosticWarn = { fg = colors.yellow }, DiagnosticWarn = { fg = colors.yellow },
DiagnosticInformation = { fg = colors.green }, DiagnosticInformation = { fg = colors.green },
LspSignatureActiveParameter = { fg = colors.black, bg = colors.green }, LspSignatureActiveParameter = { fg = colors.black, bg = colors.green },
RenamerTitle = { fg = colors.black, bg = colors.red }, RenamerTitle = { fg = colors.black, bg = colors.red },
RenamerBorder = { fg = colors.red }, RenamerBorder = { fg = colors.red },
} }

@ -1,46 +1,46 @@
local colors = require("base46").get_theme_tb "base_30" local colors = require("base46").get_theme_tb "base_30"
return { return {
NvimTreeEmptyFolderName = { fg = colors.folder_bg }, NvimTreeEmptyFolderName = { fg = colors.folder_bg },
NvimTreeEndOfBuffer = { fg = colors.darker_black }, NvimTreeEndOfBuffer = { fg = colors.darker_black },
NvimTreeFolderIcon = { fg = colors.folder_bg }, NvimTreeFolderIcon = { fg = colors.folder_bg },
NvimTreeFolderName = { fg = colors.folder_bg }, NvimTreeFolderName = { fg = colors.folder_bg },
NvimTreeGitDirty = { fg = colors.red }, NvimTreeGitDirty = { fg = colors.red },
NvimTreeIndentMarker = { fg = colors.grey_fg }, NvimTreeIndentMarker = { fg = colors.grey_fg },
NvimTreeNormal = { bg = colors.darker_black }, NvimTreeNormal = { bg = colors.darker_black },
NvimTreeNormalNC = { bg = colors.darker_black }, NvimTreeNormalNC = { bg = colors.darker_black },
NvimTreeOpenedFolderName = { fg = colors.folder_bg }, NvimTreeOpenedFolderName = { fg = colors.folder_bg },
NvimTreeGitIgnored = { fg = colors.light_grey }, NvimTreeGitIgnored = { fg = colors.light_grey },
NvimTreeWinSeparator = { NvimTreeWinSeparator = {
fg = colors.darker_black, fg = colors.darker_black,
bg = colors.darker_black, bg = colors.darker_black,
}, },
NvimTreeWindowPicker = { NvimTreeWindowPicker = {
fg = colors.red, fg = colors.red,
bg = colors.black2, bg = colors.black2,
}, },
NvimTreeCursorLine = { NvimTreeCursorLine = {
bg = colors.black2, bg = colors.black2,
}, },
NvimTreeGitNew = { NvimTreeGitNew = {
fg = colors.yellow, fg = colors.yellow,
}, },
NvimTreeGitDeleted = { NvimTreeGitDeleted = {
fg = colors.red, fg = colors.red,
}, },
NvimTreeSpecialFile = { NvimTreeSpecialFile = {
fg = colors.yellow, fg = colors.yellow,
bold = true, bold = true,
}, },
NvimTreeRootFolder = { NvimTreeRootFolder = {
fg = colors.red, fg = colors.red,
bold = true, bold = true,
}, },
} }

@ -2,207 +2,207 @@ local colors = require("base46").get_theme_tb "base_30"
return { return {
StatusLine = { StatusLine = {
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_gitIcons = { St_gitIcons = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.statusline_bg, bg = colors.statusline_bg,
bold = true, bold = true,
}, },
-- LSP -- LSP
St_lspError = { St_lspError = {
fg = colors.red, fg = colors.red,
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_lspWarning = { St_lspWarning = {
fg = colors.yellow, fg = colors.yellow,
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_LspHints = { St_LspHints = {
fg = colors.purple, fg = colors.purple,
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_LspInfo = { St_LspInfo = {
fg = colors.green, fg = colors.green,
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_LspStatus = { St_LspStatus = {
fg = colors.nord_blue, fg = colors.nord_blue,
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_LspProgress = { St_LspProgress = {
fg = colors.green, fg = colors.green,
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_LspStatus_Icon = { St_LspStatus_Icon = {
fg = colors.black, fg = colors.black,
bg = colors.nord_blue, bg = colors.nord_blue,
}, },
-- MODES -- MODES
St_NormalMode = { St_NormalMode = {
bg = colors.nord_blue, bg = colors.nord_blue,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
St_InsertMode = { St_InsertMode = {
bg = colors.dark_purple, bg = colors.dark_purple,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
St_TerminalMode = { St_TerminalMode = {
bg = colors.green, bg = colors.green,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
St_NTerminalMode = { St_NTerminalMode = {
bg = colors.yellow, bg = colors.yellow,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
St_VisualMode = { St_VisualMode = {
bg = colors.cyan, bg = colors.cyan,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
St_ReplaceMode = { St_ReplaceMode = {
bg = colors.orange, bg = colors.orange,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
St_ConfirmMode = { St_ConfirmMode = {
bg = colors.teal, bg = colors.teal,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
St_CommandMode = { St_CommandMode = {
bg = colors.green, bg = colors.green,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
St_SelectMode = { St_SelectMode = {
bg = colors.nord_blue, bg = colors.nord_blue,
fg = colors.black, fg = colors.black,
bold = true, bold = true,
}, },
-- Separators for mode -- Separators for mode
St_NormalModeSep = { St_NormalModeSep = {
fg = colors.nord_blue, fg = colors.nord_blue,
bg = colors.grey, bg = colors.grey,
}, },
St_InsertModeSep = { St_InsertModeSep = {
fg = colors.dark_purple, fg = colors.dark_purple,
bg = colors.grey, bg = colors.grey,
}, },
St_TerminalModeSep = { St_TerminalModeSep = {
fg = colors.green, fg = colors.green,
bg = colors.grey, bg = colors.grey,
}, },
St_NTerminalModeSep = { St_NTerminalModeSep = {
fg = colors.yellow, fg = colors.yellow,
bg = colors.grey, bg = colors.grey,
}, },
St_VisualModeSep = { St_VisualModeSep = {
fg = colors.cyan, fg = colors.cyan,
bg = colors.grey, bg = colors.grey,
}, },
St_ReplaceModeSep = { St_ReplaceModeSep = {
fg = colors.orange, fg = colors.orange,
bg = colors.grey, bg = colors.grey,
}, },
St_ConfirmModeSep = { St_ConfirmModeSep = {
fg = colors.teal, fg = colors.teal,
bg = colors.grey, bg = colors.grey,
}, },
St_CommandModeSep = { St_CommandModeSep = {
fg = colors.green, fg = colors.green,
bg = colors.grey, bg = colors.grey,
}, },
St_SelectModeSep = { St_SelectModeSep = {
fg = colors.nord_blue, fg = colors.nord_blue,
bg = colors.grey, bg = colors.grey,
}, },
St_EmptySpace = { St_EmptySpace = {
fg = colors.grey, fg = colors.grey,
bg = colors.lightbg, bg = colors.lightbg,
}, },
St_EmptySpace2 = { St_EmptySpace2 = {
fg = colors.grey, fg = colors.grey,
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_file_info = { St_file_info = {
bg = colors.lightbg, bg = colors.lightbg,
fg = colors.white, fg = colors.white,
}, },
St_file_sep = { St_file_sep = {
bg = colors.statusline_bg, bg = colors.statusline_bg,
fg = colors.lightbg, fg = colors.lightbg,
}, },
St_cwd_icon = { St_cwd_icon = {
fg = colors.one_bg, fg = colors.one_bg,
bg = colors.red, bg = colors.red,
}, },
St_cwd_text = { St_cwd_text = {
fg = colors.white, fg = colors.white,
bg = colors.lightbg, bg = colors.lightbg,
}, },
St_cwd_sep = { St_cwd_sep = {
fg = colors.red, fg = colors.red,
bg = colors.statusline_bg, bg = colors.statusline_bg,
}, },
St_pos_sep = { St_pos_sep = {
fg = colors.green, fg = colors.green,
bg = colors.lightbg, bg = colors.lightbg,
}, },
St_pos_icon = { St_pos_icon = {
fg = colors.black, fg = colors.black,
bg = colors.green, bg = colors.green,
}, },
St_pos_text = { St_pos_text = {
fg = colors.green, fg = colors.green,
bg = colors.lightbg, bg = colors.lightbg,
}, },
} }

@ -3,116 +3,116 @@ local theme = require("base46").get_theme_tb "base_16"
-- Standard syntax highlighting -- Standard syntax highlighting
return { return {
Boolean = { Boolean = {
fg = theme.base09, fg = theme.base09,
}, },
Character = { Character = {
fg = theme.base08, fg = theme.base08,
}, },
Conditional = { Conditional = {
fg = theme.base0E, fg = theme.base0E,
}, },
Constant = { Constant = {
fg = theme.base08, fg = theme.base08,
}, },
Define = { Define = {
fg = theme.base0E, fg = theme.base0E,
sp = "none", sp = "none",
}, },
Delimiter = { Delimiter = {
fg = theme.base0F, fg = theme.base0F,
}, },
Float = { Float = {
fg = theme.base09, fg = theme.base09,
}, },
Variable = { Variable = {
fg = theme.base05, fg = theme.base05,
}, },
Function = { Function = {
fg = theme.base0D, fg = theme.base0D,
}, },
Identifier = { Identifier = {
fg = theme.base08, fg = theme.base08,
sp = "none", sp = "none",
}, },
Include = { Include = {
fg = theme.base0D, fg = theme.base0D,
}, },
Keyword = { Keyword = {
fg = theme.base0E, fg = theme.base0E,
}, },
Label = { Label = {
fg = theme.base0A, fg = theme.base0A,
}, },
Number = { Number = {
fg = theme.base09, fg = theme.base09,
}, },
Operator = { Operator = {
fg = theme.base05, fg = theme.base05,
sp = "none", sp = "none",
}, },
PreProc = { PreProc = {
fg = theme.base0A, fg = theme.base0A,
}, },
Repeat = { Repeat = {
fg = theme.base0A, fg = theme.base0A,
}, },
Special = { Special = {
fg = theme.base0C, fg = theme.base0C,
}, },
SpecialChar = { SpecialChar = {
fg = theme.base0F, fg = theme.base0F,
}, },
Statement = { Statement = {
fg = theme.base08, fg = theme.base08,
}, },
StorageClass = { StorageClass = {
fg = theme.base0A, fg = theme.base0A,
}, },
String = { String = {
fg = theme.base0B, fg = theme.base0B,
}, },
Structure = { Structure = {
fg = theme.base0E, fg = theme.base0E,
}, },
Tag = { Tag = {
fg = theme.base0A, fg = theme.base0A,
}, },
Todo = { Todo = {
fg = theme.base0A, fg = theme.base0A,
bg = theme.base01, bg = theme.base01,
}, },
Type = { Type = {
fg = theme.base0A, fg = theme.base0A,
sp = "none", sp = "none",
}, },
Typedef = { Typedef = {
fg = theme.base0A, fg = theme.base0A,
}, },
} }

@ -2,76 +2,76 @@ local colors = require("base46").get_theme_tb "base_30"
return { return {
TblineFill = { TblineFill = {
bg = colors.black2, bg = colors.black2,
}, },
TbLineBufOn = { TbLineBufOn = {
fg = colors.white, fg = colors.white,
bg = colors.black, bg = colors.black,
}, },
TbLineBufOff = { TbLineBufOff = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.black2, bg = colors.black2,
}, },
TbLineBufOnModified = { TbLineBufOnModified = {
fg = colors.green, fg = colors.green,
bg = colors.black, bg = colors.black,
}, },
TbBufLineBufOffModified = { TbBufLineBufOffModified = {
fg = colors.red, fg = colors.red,
bg = colors.black2, bg = colors.black2,
}, },
TbLineBufOnClose = { TbLineBufOnClose = {
fg = colors.red, fg = colors.red,
bg = colors.black, bg = colors.black,
}, },
TbLineBufOffClose = { TbLineBufOffClose = {
fg = colors.light_grey, fg = colors.light_grey,
bg = colors.black2, bg = colors.black2,
}, },
TblineTabNewBtn = { TblineTabNewBtn = {
fg = colors.white, fg = colors.white,
bg = colors.one_bg3, bg = colors.one_bg3,
bold = true, bold = true,
}, },
TbLineTabOn = { TbLineTabOn = {
fg = colors.black, fg = colors.black,
bg = colors.nord_blue, bg = colors.nord_blue,
bold = true, bold = true,
}, },
TbLineTabOff = { TbLineTabOff = {
fg = colors.white, fg = colors.white,
bg = colors.one_bg2, bg = colors.one_bg2,
}, },
TbLineTabCloseBtn = { TbLineTabCloseBtn = {
fg = colors.black, fg = colors.black,
bg = colors.nord_blue, bg = colors.nord_blue,
}, },
TBTabTitle = { TBTabTitle = {
fg = colors.black, fg = colors.black,
bg = colors.white, bg = colors.white,
}, },
TbLineThemeToggleBtn = { TbLineThemeToggleBtn = {
bold = true, bold = true,
fg = colors.white, fg = colors.white,
bg = colors.one_bg3, bg = colors.one_bg3,
}, },
TbLineCloseAllBufsBtn = { TbLineCloseAllBufsBtn = {
bold = true, bold = true,
bg = colors.red, bg = colors.red,
fg = colors.black, fg = colors.black,
}, },
} }

@ -2,54 +2,54 @@ local colors = require("base46").get_theme_tb "base_30"
return { return {
TelescopeBorder = { TelescopeBorder = {
fg = colors.darker_black, fg = colors.darker_black,
bg = colors.darker_black, bg = colors.darker_black,
}, },
TelescopePromptBorder = { TelescopePromptBorder = {
fg = colors.black2, fg = colors.black2,
bg = colors.black2, bg = colors.black2,
}, },
TelescopePromptNormal = { TelescopePromptNormal = {
fg = colors.white, fg = colors.white,
bg = colors.black2, bg = colors.black2,
}, },
TelescopePromptPrefix = { TelescopePromptPrefix = {
fg = colors.red, fg = colors.red,
bg = colors.black2, bg = colors.black2,
}, },
TelescopeNormal = { bg = colors.darker_black }, TelescopeNormal = { bg = colors.darker_black },
TelescopePreviewTitle = { TelescopePreviewTitle = {
fg = colors.black, fg = colors.black,
bg = colors.green, bg = colors.green,
}, },
TelescopePromptTitle = { TelescopePromptTitle = {
fg = colors.black, fg = colors.black,
bg = colors.red, bg = colors.red,
}, },
TelescopeResultsTitle = { TelescopeResultsTitle = {
fg = colors.darker_black, fg = colors.darker_black,
bg = colors.darker_black, bg = colors.darker_black,
}, },
TelescopeSelection = { bg = colors.black2, fg = colors.white }, TelescopeSelection = { bg = colors.black2, fg = colors.white },
TelescopeResultsDiffAdd = { TelescopeResultsDiffAdd = {
fg = colors.green, fg = colors.green,
}, },
TelescopeResultsDiffChange = { TelescopeResultsDiffChange = {
fg = colors.yellow, fg = colors.yellow,
}, },
TelescopeResultsDiffDelete = { TelescopeResultsDiffDelete = {
fg = colors.red, fg = colors.red,
}, },
} }

@ -1,192 +1,192 @@
local theme = require("base46").get_theme_tb "base_16" local theme = require("base46").get_theme_tb "base_16"
return { return {
TSAnnotation = { TSAnnotation = {
fg = theme.base0F, fg = theme.base0F,
}, },
TSAttribute = { TSAttribute = {
fg = theme.base0A, fg = theme.base0A,
}, },
TSTagAttribute = { TSTagAttribute = {
link = "TSProperty", link = "TSProperty",
}, },
TSCharacter = { TSCharacter = {
fg = theme.base08, fg = theme.base08,
}, },
TSConstructor = { TSConstructor = {
fg = theme.base0C, fg = theme.base0C,
}, },
TSConstBuiltin = { TSConstBuiltin = {
fg = theme.base09, fg = theme.base09,
}, },
TSConstMacro = { TSConstMacro = {
fg = theme.base08, fg = theme.base08,
}, },
TSError = { TSError = {
fg = theme.base08, fg = theme.base08,
}, },
TSException = { TSException = {
fg = theme.base08, fg = theme.base08,
}, },
TSFloat = { TSFloat = {
fg = theme.base09, fg = theme.base09,
}, },
TSKeyword = { TSKeyword = {
fg = theme.base0E, fg = theme.base0E,
}, },
TSKeywordFunction = { TSKeywordFunction = {
fg = theme.base0E, fg = theme.base0E,
}, },
TSKeywordReturn = { TSKeywordReturn = {
fg = theme.base0E, fg = theme.base0E,
}, },
TSFunction = { TSFunction = {
fg = theme.base0D, fg = theme.base0D,
}, },
TSFuncBuiltin = { TSFuncBuiltin = {
fg = theme.base0D, fg = theme.base0D,
}, },
TSFuncMacro = { TSFuncMacro = {
fg = theme.base08, fg = theme.base08,
}, },
TSKeywordOperator = { TSKeywordOperator = {
fg = theme.base0E, fg = theme.base0E,
}, },
TSMethod = { TSMethod = {
fg = theme.base0D, fg = theme.base0D,
}, },
TSNamespace = { TSNamespace = {
fg = theme.base08, fg = theme.base08,
}, },
TSNone = { TSNone = {
fg = theme.base05, fg = theme.base05,
}, },
TSParameter = { TSParameter = {
fg = theme.base08, fg = theme.base08,
}, },
TSParameterReference = { TSParameterReference = {
fg = theme.base05, fg = theme.base05,
}, },
TSPunctBracket = { TSPunctBracket = {
fg = theme.base0F, fg = theme.base0F,
}, },
TSPunctDelimiter = { TSPunctDelimiter = {
fg = theme.base0F, fg = theme.base0F,
}, },
TSPunctSpecial = { TSPunctSpecial = {
fg = theme.base08, fg = theme.base08,
}, },
TSStringRegex = { TSStringRegex = {
fg = theme.base0C, fg = theme.base0C,
}, },
TSStringEscape = { TSStringEscape = {
fg = theme.base0C, fg = theme.base0C,
}, },
TSSymbol = { TSSymbol = {
fg = theme.base0B, fg = theme.base0B,
}, },
TSTagDelimiter = { TSTagDelimiter = {
fg = theme.base0F, fg = theme.base0F,
}, },
TSText = { TSText = {
fg = theme.base05, fg = theme.base05,
}, },
TSStrong = { TSStrong = {
bold = true, bold = true,
}, },
TSEmphasis = { TSEmphasis = {
fg = theme.base09, fg = theme.base09,
}, },
TSStrike = { TSStrike = {
fg = theme.base00, fg = theme.base00,
strikethrough = true, strikethrough = true,
}, },
TSLiteral = { TSLiteral = {
fg = theme.base09, fg = theme.base09,
}, },
TSURI = { TSURI = {
fg = theme.base09, fg = theme.base09,
underline = true, underline = true,
}, },
TSTypeBuiltin = { TSTypeBuiltin = {
fg = theme.base0A, fg = theme.base0A,
}, },
TSVariableBuiltin = { TSVariableBuiltin = {
fg = theme.base09, fg = theme.base09,
}, },
TSVariable = { TSVariable = {
fg = theme.base05, fg = theme.base05,
}, },
TSDefinition = { TSDefinition = {
sp = theme.base04, sp = theme.base04,
underline = true, underline = true,
}, },
TSDefinitionUsage = { TSDefinitionUsage = {
sp = theme.base04, sp = theme.base04,
underline = true, underline = true,
}, },
TSCurrentScope = { TSCurrentScope = {
bold = true, bold = true,
}, },
luaTSField = { luaTSField = {
fg = theme.base0D, fg = theme.base0D,
}, },
TSFieldKey = { TSFieldKey = {
fg = theme.base08, fg = theme.base08,
}, },
TSProperty = { TSProperty = {
fg = theme.base08, fg = theme.base08,
}, },
TSInclude = { TSInclude = {
link = "Include", link = "Include",
}, },
TSConditional = { TSConditional = {
link = "Conditional", link = "Conditional",
}, },
} }

@ -1,9 +1,9 @@
local colors = require("base46").get_theme_tb "base_30" local colors = require("base46").get_theme_tb "base_30"
return { return {
WhichKey = { fg = colors.blue }, WhichKey = { fg = colors.blue },
WhichKeySeparator = { fg = colors.light_grey }, WhichKeySeparator = { fg = colors.light_grey },
WhichKeyDesc = { fg = colors.red }, WhichKeyDesc = { fg = colors.red },
WhichKeyGroup = { fg = colors.green }, WhichKeyGroup = { fg = colors.green },
WhichKeyValue = { fg = colors.green }, WhichKeyValue = { fg = colors.green },
} }

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#ced4df", white = "#ced4df",
darker_black = "#1c1c26", darker_black = "#1c1c26",
black = "#20202A", -- nvim bg black = "#20202A", -- nvim bg
black2 = "#25252f", black2 = "#25252f",
one_bg = "#2a2a34", one_bg = "#2a2a34",
one_bg2 = "#34343e", one_bg2 = "#34343e",
one_bg3 = "#3e3e48", one_bg3 = "#3e3e48",
grey = "#484852", grey = "#484852",
grey_fg = "#4e4e58", grey_fg = "#4e4e58",
grey_fg2 = "#54545e", grey_fg2 = "#54545e",
light_grey = "#5a5a64", light_grey = "#5a5a64",
red = "#ebb9b9", red = "#ebb9b9",
baby_pink = "#EAC1C1", baby_pink = "#EAC1C1",
pink = "#E9D1D1", pink = "#E9D1D1",
line = "#2d2d37", -- for lines like vertsplit line = "#2d2d37", -- for lines like vertsplit
green = "#b1dba4", green = "#b1dba4",
vibrant_green = "#BEE0A8", vibrant_green = "#BEE0A8",
blue = "#CDDBF9", blue = "#CDDBF9",
nord_blue = "#BCCAEB", nord_blue = "#BCCAEB",
yellow = "#E6DFB8", yellow = "#E6DFB8",
sun = "#EEE8BA", sun = "#EEE8BA",
purple = "#f6bbe7", purple = "#f6bbe7",
dark_purple = "#E8B6E9", dark_purple = "#E8B6E9",
teal = "#AEDCB7", teal = "#AEDCB7",
orange = "#E8CCA7", orange = "#E8CCA7",
cyan = "#b8dceb", cyan = "#b8dceb",
statusline_bg = "#262630", statusline_bg = "#262630",
lightbg = "#2e2e38", lightbg = "#2e2e38",
pmenu_bg = "#ebb9b9", pmenu_bg = "#ebb9b9",
folder_bg = "#b8dceb", folder_bg = "#b8dceb",
} }
M.base_16 = { M.base_16 = {
base00 = "#20202A", base00 = "#20202A",
base01 = "#2c2e3e", base01 = "#2c2e3e",
base02 = "#3D4059", base02 = "#3D4059",
base03 = "#313449", base03 = "#313449",
base04 = "#63718b", base04 = "#63718b",
base05 = "#bac0cb", base05 = "#bac0cb",
base06 = "#c5cbd6", base06 = "#c5cbd6",
base07 = "#ced4df", base07 = "#ced4df",
base08 = "#ebb9b9", base08 = "#ebb9b9",
base09 = "#e8cca7", base09 = "#e8cca7",
base0A = "#e6dfb8", base0A = "#e6dfb8",
base0B = "#b1dba4", base0B = "#b1dba4",
base0C = "#b8dceb", base0C = "#b8dceb",
base0D = "#a3b8ef", base0D = "#a3b8ef",
base0E = "#f6bbe7", base0E = "#f6bbe7",
base0F = "#eAc1c1", base0F = "#eAc1c1",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,64 +1,64 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#ced4df", white = "#ced4df",
darker_black = "#05080e", darker_black = "#05080e",
black = "#0B0E14", -- nvim bg black = "#0B0E14", -- nvim bg
black2 = "#14171d", black2 = "#14171d",
one_bg = "#1c1f25", one_bg = "#1c1f25",
one_bg2 = "#24272d", one_bg2 = "#24272d",
one_bg3 = "#2b2e34", one_bg3 = "#2b2e34",
grey = "#33363c", grey = "#33363c",
grey_fg = "#3d4046", grey_fg = "#3d4046",
grey_fg2 = "#46494f", grey_fg2 = "#46494f",
light_grey = "#54575d", light_grey = "#54575d",
red = "#F07178", red = "#F07178",
baby_pink = "#ff949b", baby_pink = "#ff949b",
pink = "#ff8087", pink = "#ff8087",
line = "#24272d", -- for lines like vertsplit line = "#24272d", -- for lines like vertsplit
green = "#AAD84C", green = "#AAD84C",
vibrant_green = "#b9e75b", vibrant_green = "#b9e75b",
blue = "#36A3D9", blue = "#36A3D9",
nord_blue = "#43b0e6", nord_blue = "#43b0e6",
yellow = "#E7C547", yellow = "#E7C547",
sun = "#f0df8a", sun = "#f0df8a",
purple = "#c79bf4", purple = "#c79bf4",
dark_purple = "#A37ACC", dark_purple = "#A37ACC",
teal = "#74c5aa", teal = "#74c5aa",
orange = "#ffa455", orange = "#ffa455",
cyan = "#95E6CB", cyan = "#95E6CB",
statusline_bg = "#12151b", statusline_bg = "#12151b",
lightbg = "#24272d", lightbg = "#24272d",
pmenu_bg = "#ff9445", pmenu_bg = "#ff9445",
folder_bg = "#98a3af", folder_bg = "#98a3af",
} }
M.base_16 = { M.base_16 = {
base00 = "#0B0E14", base00 = "#0B0E14",
base01 = "#1c1f25", base01 = "#1c1f25",
base02 = "#24272d", base02 = "#24272d",
base03 = "#2b2e34", base03 = "#2b2e34",
base04 = "#33363c", base04 = "#33363c",
base05 = "#c9c7be", base05 = "#c9c7be",
base06 = "#E6E1CF", base06 = "#E6E1CF",
base07 = "#D9D7CE", base07 = "#D9D7CE",
base08 = "#c9c7be", base08 = "#c9c7be",
base09 = "#FFEE99", base09 = "#FFEE99",
base0A = "#56c3f9", base0A = "#56c3f9",
base0B = "#AAD84C", base0B = "#AAD84C",
base0C = "#FFB454", base0C = "#FFB454",
base0D = "#F07174", base0D = "#F07174",
base0E = "#FFB454", base0E = "#FFB454",
base0F = "#CBA6F7", base0F = "#CBA6F7",
} }
M.polish_hl = { M.polish_hl = {
TSTagDelimiter = { fg = M.base_30.cyan }, TSTagDelimiter = { fg = M.base_30.cyan },
TSFunction = { fg = M.base_30.orange }, TSFunction = { fg = M.base_30.orange },
luaTSField = { fg = M.base_16.base0D }, luaTSField = { fg = M.base_16.base0D },
TSParameter = { fg = M.base_16.base0F }, TSParameter = { fg = M.base_16.base0F },
TSConstructor = { fg = M.base_16.base0A }, TSConstructor = { fg = M.base_16.base0A },
TSTagAttribute = { fg = M.base_30.orange }, TSTagAttribute = { fg = M.base_30.orange },
} }
M = require("base46").override_theme(M, "ayu-dark") M = require("base46").override_theme(M, "ayu-dark")

@ -1,68 +1,68 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#695d57", white = "#695d57",
darker_black = "#dfd8d5", darker_black = "#dfd8d5",
black = "#e6dfdc", -- nvim bg black = "#e6dfdc", -- nvim bg
black2 = "#d9d2cf", black2 = "#d9d2cf",
one_bg = "#d0c9c6", one_bg = "#d0c9c6",
one_bg2 = "#c7c0bd", one_bg2 = "#c7c0bd",
one_bg3 = "#c0b9b6", one_bg3 = "#c0b9b6",
grey = "#b9b2af", grey = "#b9b2af",
grey_fg = "#b2aba8", grey_fg = "#b2aba8",
grey_fg2 = "#aaa3a0", grey_fg2 = "#aaa3a0",
light_grey = "#a09996", light_grey = "#a09996",
red = "#b28069", red = "#b28069",
baby_pink = "#b7856e", baby_pink = "#b7856e",
pink = "#c18f78", pink = "#c18f78",
line = "#d3ccc9", -- for lines like vertsplit line = "#d3ccc9", -- for lines like vertsplit
green = "#6c805c", green = "#6c805c",
vibrant_green = "#899d79", vibrant_green = "#899d79",
blue = "#5f7d9b", blue = "#5f7d9b",
nord_blue = "#5e5f65", nord_blue = "#5e5f65",
yellow = "#a9a29f", yellow = "#a9a29f",
sun = "#d38a73", sun = "#d38a73",
purple = "#a685a6", purple = "#a685a6",
dark_purple = "#9c7b9c", dark_purple = "#9c7b9c",
teal = "#4b6987", teal = "#4b6987",
orange = "#cc836c", orange = "#cc836c",
cyan = "#75998e", cyan = "#75998e",
statusline_bg = "#dcd5d2", statusline_bg = "#dcd5d2",
lightbg = "#cdc6c3", lightbg = "#cdc6c3",
pmenu_bg = "#857e7b", pmenu_bg = "#857e7b",
folder_bg = "#746d6a", folder_bg = "#746d6a",
} }
M.base_16 = { M.base_16 = {
base00 = "#e6dfdc", base00 = "#e6dfdc",
base01 = "#ded7d4", base01 = "#ded7d4",
base02 = "#d7d0cd", base02 = "#d7d0cd",
base03 = "#d1cac7", base03 = "#d1cac7",
base04 = "#cac3c0", base04 = "#cac3c0",
base05 = "#746862", base05 = "#746862",
base06 = "#5e524c", base06 = "#5e524c",
base07 = "#695d57", base07 = "#695d57",
base08 = "#8779a8", base08 = "#8779a8",
base09 = "#a87678", base09 = "#a87678",
base0A = "#738199", base0A = "#738199",
base0B = "#6c805c", base0B = "#6c805c",
base0C = "#5e908e", base0C = "#5e908e",
base0D = "#b3816a", base0D = "#b3816a",
base0E = "#7e8e8e", base0E = "#7e8e8e",
base0F = "#976153", base0F = "#976153",
} }
M.polish_hl = { M.polish_hl = {
WhichKeyDesc = { fg = M.base_30.white }, WhichKeyDesc = { fg = M.base_30.white },
WhichKey = { fg = M.base_30.white }, WhichKey = { fg = M.base_30.white },
TbLineThemeToggleBtn = { TbLineThemeToggleBtn = {
fg = M.base_30.black, fg = M.base_30.black,
bg = M.base_30.white, bg = M.base_30.white,
}, },
IndentBlanklineContextStart = { bg = M.base_30.black2 }, IndentBlanklineContextStart = { bg = M.base_30.black2 },
St_pos_text = { fg = M.base_30.white }, St_pos_text = { fg = M.base_30.white },
} }
vim.opt.bg = "light" vim.opt.bg = "light"

@ -1,62 +1,62 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#D9E0EE", white = "#D9E0EE",
darker_black = "#191828", darker_black = "#191828",
black = "#1E1D2D", -- nvim bg black = "#1E1D2D", -- nvim bg
black2 = "#252434", black2 = "#252434",
one_bg = "#2d2c3c", -- real bg of onedark one_bg = "#2d2c3c", -- real bg of onedark
one_bg2 = "#363545", one_bg2 = "#363545",
one_bg3 = "#3e3d4d", one_bg3 = "#3e3d4d",
grey = "#474656", grey = "#474656",
grey_fg = "#4e4d5d", grey_fg = "#4e4d5d",
grey_fg2 = "#555464", grey_fg2 = "#555464",
light_grey = "#605f6f", light_grey = "#605f6f",
red = "#F38BA8", red = "#F38BA8",
baby_pink = "#ffa5c3", baby_pink = "#ffa5c3",
pink = "#F5C2E7", pink = "#F5C2E7",
line = "#383747", -- for lines like vertsplit line = "#383747", -- for lines like vertsplit
green = "#ABE9B3", green = "#ABE9B3",
vibrant_green = "#b6f4be", vibrant_green = "#b6f4be",
nord_blue = "#8bc2f0", nord_blue = "#8bc2f0",
blue = "#89B4FA", blue = "#89B4FA",
yellow = "#FAE3B0", yellow = "#FAE3B0",
sun = "#ffe9b6", sun = "#ffe9b6",
purple = "#d0a9e5", purple = "#d0a9e5",
dark_purple = "#c7a0dc", dark_purple = "#c7a0dc",
teal = "#B5E8E0", teal = "#B5E8E0",
orange = "#F8BD96", orange = "#F8BD96",
cyan = "#89DCEB", cyan = "#89DCEB",
statusline_bg = "#232232", statusline_bg = "#232232",
lightbg = "#2f2e3e", lightbg = "#2f2e3e",
pmenu_bg = "#ABE9B3", pmenu_bg = "#ABE9B3",
folder_bg = "#89B4FA", folder_bg = "#89B4FA",
lavender = "#c7d1ff", lavender = "#c7d1ff",
} }
M.base_16 = { M.base_16 = {
base00 = "#1E1D2D", base00 = "#1E1D2D",
base01 = "#282737", base01 = "#282737",
base02 = "#2f2e3e", base02 = "#2f2e3e",
base03 = "#383747", base03 = "#383747",
base04 = "#414050", base04 = "#414050",
base05 = "#bfc6d4", base05 = "#bfc6d4",
base06 = "#ccd3e1", base06 = "#ccd3e1",
base07 = "#D9E0EE", base07 = "#D9E0EE",
base08 = "#F38BA8", base08 = "#F38BA8",
base09 = "#F8BD96", base09 = "#F8BD96",
base0A = "#FAE3B0", base0A = "#FAE3B0",
base0B = "#ABE9B3", base0B = "#ABE9B3",
base0C = "#89DCEB", base0C = "#89DCEB",
base0D = "#89B4FA", base0D = "#89B4FA",
base0E = "#CBA6F7", base0E = "#CBA6F7",
base0F = "#F38BA8", base0F = "#F38BA8",
} }
M.polish_hl = { M.polish_hl = {
TSVariable = { fg = M.base_30.lavender }, TSVariable = { fg = M.base_30.lavender },
TSProperty = { fg = M.base_30.teal }, TSProperty = { fg = M.base_30.teal },
TSVariableBuiltin = { fg = M.base_30.red }, TSVariableBuiltin = { fg = M.base_30.red },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,70 +1,70 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#4C4F69", white = "#4C4F69",
darker_black = "#e6e8ec", darker_black = "#e6e8ec",
black = "#EFF1F5", -- nvim bg black = "#EFF1F5", -- nvim bg
black2 = "#e0e2e6", black2 = "#e0e2e6",
one_bg = "#e4e6ea", -- real bg of onedark one_bg = "#e4e6ea", -- real bg of onedark
one_bg2 = "#d9dbdf", one_bg2 = "#d9dbdf",
one_bg3 = "#ced0d4", one_bg3 = "#ced0d4",
grey = "#c3c5c9", grey = "#c3c5c9",
grey_fg = "#b9bbbf", grey_fg = "#b9bbbf",
grey_fg2 = "#b0b2b6", grey_fg2 = "#b0b2b6",
light_grey = "#a6a8ac", light_grey = "#a6a8ac",
red = "#D20F39", red = "#D20F39",
baby_pink = "#DD7878", baby_pink = "#DD7878",
pink = "#ea76cb", pink = "#ea76cb",
line = "#d9dbdf", -- for lines like vertsplit line = "#d9dbdf", -- for lines like vertsplit
green = "#40A02B", green = "#40A02B",
vibrant_green = "#7eca9c", vibrant_green = "#7eca9c",
nord_blue = "#7287FD", nord_blue = "#7287FD",
blue = "#1e66f5", blue = "#1e66f5",
yellow = "#df8e1d", yellow = "#df8e1d",
sun = "#dea95f", sun = "#dea95f",
purple = "#8839EF", purple = "#8839EF",
dark_purple = "#7c2de3", dark_purple = "#7c2de3",
teal = "#179299", teal = "#179299",
orange = "#FE640B", orange = "#FE640B",
cyan = "#04A5E5", cyan = "#04A5E5",
statusline_bg = "#e4e6ea", statusline_bg = "#e4e6ea",
lightbg = "#d9dbdf", lightbg = "#d9dbdf",
pmenu_bg = "#7287FD", pmenu_bg = "#7287FD",
folder_bg = "#6C6C6C", folder_bg = "#6C6C6C",
} }
M.base_16 = { M.base_16 = {
base00 = "#EFF1F5", base00 = "#EFF1F5",
base01 = "#e4e6ea", base01 = "#e4e6ea",
base02 = "#d9dbdf", base02 = "#d9dbdf",
base03 = "#ced0d4", base03 = "#ced0d4",
base04 = "#c3c5c9", base04 = "#c3c5c9",
base05 = "#4C4F69", base05 = "#4C4F69",
base06 = "#474a64", base06 = "#474a64",
base07 = "#41445e", base07 = "#41445e",
base08 = "#D20F39", base08 = "#D20F39",
base09 = "#7c2de3", base09 = "#7c2de3",
base0A = "#df8e1d", base0A = "#df8e1d",
base0B = "#40A02B", base0B = "#40A02B",
base0C = "#179299", base0C = "#179299",
base0D = "#1e66f5", base0D = "#1e66f5",
base0E = "#8839EF", base0E = "#8839EF",
base0F = "#62657f", base0F = "#62657f",
} }
vim.opt.bg = "light" vim.opt.bg = "light"
M.polish_hl = { M.polish_hl = {
TelescopePromptPrefix = { fg = M.base_30.white }, TelescopePromptPrefix = { fg = M.base_30.white },
TelescopeSelection = { bg = M.base_30.one_bg, fg = M.base_30.white }, TelescopeSelection = { bg = M.base_30.one_bg, fg = M.base_30.white },
FloatBorder = { fg = M.base_16.base05 }, FloatBorder = { fg = M.base_16.base05 },
DiffAdd = { fg = M.base_16.base05 }, DiffAdd = { fg = M.base_16.base05 },
TbLineThemeToggleBtn = { bg = M.base_30.one_bg3 }, TbLineThemeToggleBtn = { bg = M.base_30.one_bg3 },
WhichKeyDesc = { fg = M.base_30.white }, WhichKeyDesc = { fg = M.base_30.white },
Pmenu = { bg = M.base_30.black2 }, Pmenu = { bg = M.base_30.black2 },
St_pos_text = { fg = M.base_30.white }, St_pos_text = { fg = M.base_30.white },
TSVariableBuiltin = { fg = M.base_30.red }, TSVariableBuiltin = { fg = M.base_30.red },
TSProperty = { fg = M.base_30.teal }, TSProperty = { fg = M.base_30.teal },
} }
M = require("base46").override_theme(M, "catppuccin_latte") M = require("base46").override_theme(M, "catppuccin_latte")

@ -1,60 +1,60 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#F8F8F2", white = "#F8F8F2",
darker_black = "#222430", darker_black = "#222430",
black = "#282A36", -- nvim bg black = "#282A36", -- nvim bg
black2 = "#2d303e", black2 = "#2d303e",
one_bg = "#373844", -- real bg of onedark one_bg = "#373844", -- real bg of onedark
one_bg2 = "#44475a", one_bg2 = "#44475a",
one_bg3 = "#565761", one_bg3 = "#565761",
grey = "#5e5f69", grey = "#5e5f69",
grey_fg = "#666771", grey_fg = "#666771",
grey_fg2 = "#6e6f79", grey_fg2 = "#6e6f79",
light_grey = "#73747e", light_grey = "#73747e",
red = "#ff7070", red = "#ff7070",
baby_pink = "#ff86d3", baby_pink = "#ff86d3",
pink = "#FF79C6", pink = "#FF79C6",
line = "#3c3d49", -- for lines like vertsplit line = "#3c3d49", -- for lines like vertsplit
green = "#50fa7b", green = "#50fa7b",
vibrant_green = "#5dff88", vibrant_green = "#5dff88",
nord_blue = "#8b9bcd", nord_blue = "#8b9bcd",
blue = "#a1b1e3", blue = "#a1b1e3",
yellow = "#F1FA8C", yellow = "#F1FA8C",
sun = "#FFFFA5", sun = "#FFFFA5",
purple = "#BD93F9", purple = "#BD93F9",
dark_purple = "#BD93F9", dark_purple = "#BD93F9",
teal = "#92a2d4", teal = "#92a2d4",
orange = "#FFB86C", orange = "#FFB86C",
cyan = "#8BE9FD", cyan = "#8BE9FD",
statusline_bg = "#2d2f3b", statusline_bg = "#2d2f3b",
lightbg = "#41434f", lightbg = "#41434f",
pmenu_bg = "#b389ef", pmenu_bg = "#b389ef",
folder_bg = "#BD93F9", folder_bg = "#BD93F9",
} }
M.base_16 = { M.base_16 = {
base00 = "#282936", base00 = "#282936",
base01 = "#3a3c4e", base01 = "#3a3c4e",
base02 = "#4d4f68", base02 = "#4d4f68",
base03 = "#626483", base03 = "#626483",
base04 = "#62d6e8", base04 = "#62d6e8",
base05 = "#e9e9f4", base05 = "#e9e9f4",
base06 = "#f1f2f8", base06 = "#f1f2f8",
base07 = "#f7f7fb", base07 = "#f7f7fb",
base08 = "#c197fd", base08 = "#c197fd",
base09 = "#FFB86C", base09 = "#FFB86C",
base0A = "#62d6e8", base0A = "#62d6e8",
base0B = "#F1FA8C", base0B = "#F1FA8C",
base0C = "#8BE9FD", base0C = "#8BE9FD",
base0D = "#50fa7b", base0D = "#50fa7b",
base0E = "#ff86d3", base0E = "#ff86d3",
base0F = "#F8F8F2", base0F = "#F8F8F2",
} }
M.polish_hl = { M.polish_hl = {
TSFuncBuiltin = { fg = M.base_30.cyan }, TSFuncBuiltin = { fg = M.base_30.cyan },
TSNumber = { fg = M.base_30.purple }, TSNumber = { fg = M.base_30.purple },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#b0b0b0", white = "#b0b0b0",
darker_black = "#151b21", darker_black = "#151b21",
black = "#1a2026", -- nvim bg black = "#1a2026", -- nvim bg
black2 = "#20262c", black2 = "#20262c",
one_bg = "#242a30", one_bg = "#242a30",
one_bg2 = "#292f35", one_bg2 = "#292f35",
one_bg3 = "#2e343a", one_bg3 = "#2e343a",
grey = "#42484e", grey = "#42484e",
grey_fg = "#474d53", grey_fg = "#474d53",
grey_fg2 = "#50565c", grey_fg2 = "#50565c",
light_grey = "#565c62", light_grey = "#565c62",
red = "#ac8a8c", red = "#ac8a8c",
baby_pink = "#de878f", baby_pink = "#de878f",
pink = "#e89199", pink = "#e89199",
line = "#2d3339", -- for lines like vertsplit line = "#2d3339", -- for lines like vertsplit
green = "#8aac8b", green = "#8aac8b",
vibrant_green = "#9ec49f", vibrant_green = "#9ec49f",
blue = "#6b8bab", blue = "#6b8bab",
nord_blue = "#7797b7", nord_blue = "#7797b7",
yellow = "#c4c19e", yellow = "#c4c19e",
sun = "#aca98a", sun = "#aca98a",
purple = "#a39ec4", purple = "#a39ec4",
dark_purple = "#8f8aac", dark_purple = "#8f8aac",
teal = "#7c9cbc", teal = "#7c9cbc",
orange = "#C9938A", orange = "#C9938A",
cyan = "#9aafe6", cyan = "#9aafe6",
statusline_bg = "#1e242a", statusline_bg = "#1e242a",
lightbg = "#2d3339", lightbg = "#2d3339",
pmenu_bg = "#8aac8b", pmenu_bg = "#8aac8b",
folder_bg = "#6b8bab", folder_bg = "#6b8bab",
} }
M.base_16 = { M.base_16 = {
base00 = "#1a2026", base00 = "#1a2026",
base01 = "#242a30", base01 = "#242a30",
base02 = "#292f35", base02 = "#292f35",
base03 = "#2e343a", base03 = "#2e343a",
base04 = "#42484e", base04 = "#42484e",
base05 = "#bebebe", base05 = "#bebebe",
base06 = "#bbbbbb", base06 = "#bbbbbb",
base07 = "#b0b0b0", base07 = "#b0b0b0",
base08 = "#ac8a8c", base08 = "#ac8a8c",
base09 = "#C9938A", base09 = "#C9938A",
base0A = "#aca98a", base0A = "#aca98a",
base0B = "#8aac8b", base0B = "#8aac8b",
base0C = "#8aabac", base0C = "#8aabac",
base0D = "#7797b7", base0D = "#7797b7",
base0E = "#948fb1", base0E = "#948fb1",
base0F = "#ac8a8c", base0F = "#ac8a8c",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -4,68 +4,68 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#cdc0ad", white = "#cdc0ad",
darker_black = "#201d1c", darker_black = "#201d1c",
black = "#252221", -- nvim bg black = "#252221", -- nvim bg
black2 = "#2b2827", black2 = "#2b2827",
one_bg = "#2f2c2b", one_bg = "#2f2c2b",
one_bg2 = "#393635", one_bg2 = "#393635",
one_bg3 = "#43403f", one_bg3 = "#43403f",
grey = "#4d4a49", grey = "#4d4a49",
grey_fg = "#575453", grey_fg = "#575453",
grey_fg2 = "#615e5d", grey_fg2 = "#615e5d",
light_grey = "#6b6867", light_grey = "#6b6867",
red = "#c65f5f", red = "#c65f5f",
baby_pink = "#dc7575", baby_pink = "#dc7575",
pink = "#d16a6a", pink = "#d16a6a",
line = "#322f2e", -- for lines like vertsplit line = "#322f2e", -- for lines like vertsplit
green = "#8ca589", green = "#8ca589",
vibrant_green = "#95ae92", vibrant_green = "#95ae92",
nord_blue = "#728797", nord_blue = "#728797",
blue = "#7d92a2", blue = "#7d92a2",
yellow = "#d9b27c", yellow = "#d9b27c",
sun = "#e1ba84", sun = "#e1ba84",
purple = "#998396", purple = "#998396",
dark_purple = "#917b8e", dark_purple = "#917b8e",
teal = "#749689", teal = "#749689",
orange = "#d08b65", orange = "#d08b65",
cyan = "#829e9b", cyan = "#829e9b",
statusline_bg = "#292625", statusline_bg = "#292625",
lightbg = "#353231", lightbg = "#353231",
pmenu_bg = "#859e82", pmenu_bg = "#859e82",
folder_bg = "#768b9b", folder_bg = "#768b9b",
beige = "#ab9382", beige = "#ab9382",
} }
M.base_16 = { M.base_16 = {
base00 = "#252221", base00 = "#252221",
base01 = "#2f2c2b", base01 = "#2f2c2b",
base02 = "#393635", base02 = "#393635",
base03 = "#43403f", base03 = "#43403f",
base04 = "#4d4a49", base04 = "#4d4a49",
base05 = "#c8bAA4", base05 = "#c8bAA4",
base06 = "#beae94", base06 = "#beae94",
base07 = "#cdc0ad", base07 = "#cdc0ad",
base08 = "#c65f5f", base08 = "#c65f5f",
base09 = "#d08b65", base09 = "#d08b65",
base0A = "#d9b27c", base0A = "#d9b27c",
base0B = "#8ca589", base0B = "#8ca589",
base0C = "#998396", base0C = "#998396",
base0D = "#7d92a2", base0D = "#7d92a2",
base0E = "#c65f5f", base0E = "#c65f5f",
base0F = "#ab9382", base0F = "#ab9382",
} }
M.polish_hl = { M.polish_hl = {
TSField = { fg = M.base_30.purple }, TSField = { fg = M.base_30.purple },
TSVariable = { fg = M.base_16.base06 }, TSVariable = { fg = M.base_16.base06 },
TSModule = { fg = M.base_30.beige }, TSModule = { fg = M.base_30.beige },
Operator = { fg = M.base_30.blue }, Operator = { fg = M.base_30.blue },
TSAttribute = { fg = M.base_30.cyan }, TSAttribute = { fg = M.base_30.cyan },
TSPunctBracket = { fg = M.base_16.base06 }, TSPunctBracket = { fg = M.base_16.base06 },
TSParenthesis = { link = "TSPunctBracket" }, TSParenthesis = { link = "TSPunctBracket" },
TSParameter = { fg = M.base_30.green }, TSParameter = { fg = M.base_30.green },
TSFuncBuiltin = { fg = M.base_30.yellow }, TSFuncBuiltin = { fg = M.base_30.yellow },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#dee1e6", white = "#dee1e6",
darker_black = "#111519", darker_black = "#111519",
black = "#171B20", -- nvim bg black = "#171B20", -- nvim bg
black2 = "#1e2227", black2 = "#1e2227",
one_bg = "#262a2f", one_bg = "#262a2f",
one_bg2 = "#2f3338", one_bg2 = "#2f3338",
one_bg3 = "#373b40", one_bg3 = "#373b40",
grey = "#41454a", grey = "#41454a",
grey_fg = "#494d52", grey_fg = "#494d52",
grey_fg2 = "#505459", grey_fg2 = "#505459",
light_grey = "#5a5e63", light_grey = "#5a5e63",
red = "#e05f65", red = "#e05f65",
baby_pink = "#ea696f", baby_pink = "#ea696f",
pink = "#c68aee", pink = "#c68aee",
line = "#282d35", -- for lines like vertsplit line = "#282d35", -- for lines like vertsplit
green = "#78DBA9", green = "#78DBA9",
vibrant_green = "#87eab8", vibrant_green = "#87eab8",
blue = "#70a5eb", blue = "#70a5eb",
nord_blue = "#74bee9", nord_blue = "#74bee9",
yellow = "#f1cf8a", yellow = "#f1cf8a",
sun = "#e7c580", sun = "#e7c580",
purple = "#c68aee", purple = "#c68aee",
dark_purple = "#b77bdf", dark_purple = "#b77bdf",
teal = "#7ddac5", teal = "#7ddac5",
orange = "#e9a180", orange = "#e9a180",
cyan = "#74bee9", cyan = "#74bee9",
statusline_bg = "#1c2026", statusline_bg = "#1c2026",
lightbg = "#2b3038", lightbg = "#2b3038",
pmenu_bg = "#7ddac5", pmenu_bg = "#7ddac5",
folder_bg = "#78DBA9", folder_bg = "#78DBA9",
} }
M.base_16 = { M.base_16 = {
base00 = "#171B20", base00 = "#171B20",
base01 = "#21262e", base01 = "#21262e",
base02 = "#242931", base02 = "#242931",
base03 = "#485263", base03 = "#485263",
base04 = "#485263", base04 = "#485263",
base05 = "#b6beca", base05 = "#b6beca",
base06 = "#dee1e6", base06 = "#dee1e6",
base07 = "#dee1e6", base07 = "#dee1e6",
base08 = "#e05f65", base08 = "#e05f65",
base09 = "#e9a180", base09 = "#e9a180",
base0A = "#f1cf8a", base0A = "#f1cf8a",
base0B = "#78DBA9", base0B = "#78DBA9",
base0C = "#9cd1ff", base0C = "#9cd1ff",
base0D = "#74bee9", base0D = "#74bee9",
base0E = "#c68aee", base0E = "#c68aee",
base0F = "#e05f65", base0F = "#e05f65",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,59 +1,59 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#bbc2cf", white = "#bbc2cf",
darker_black = "#22262e", darker_black = "#22262e",
black = "#282c34", -- nvim bg black = "#282c34", -- nvim bg
black2 = "#2e323a", black2 = "#2e323a",
one_bg = "#32363e", -- real bg of onedark one_bg = "#32363e", -- real bg of onedark
one_bg2 = "#3c4048", one_bg2 = "#3c4048",
one_bg3 = "#41454d", one_bg3 = "#41454d",
grey = "#494d55", grey = "#494d55",
grey_fg = "#53575f", grey_fg = "#53575f",
grey_fg2 = "#5d6169", grey_fg2 = "#5d6169",
light_grey = "#676b73", light_grey = "#676b73",
red = "#ff6b5a", red = "#ff6b5a",
baby_pink = "#ff7665", baby_pink = "#ff7665",
pink = "#ff75a0", pink = "#ff75a0",
line = "#3b3f47", -- for lines like vertsplit line = "#3b3f47", -- for lines like vertsplit
green = "#98be65", green = "#98be65",
vibrant_green = "#a9cf76", vibrant_green = "#a9cf76",
nord_blue = "#47a5e5", nord_blue = "#47a5e5",
blue = "#61afef", blue = "#61afef",
yellow = "#ECBE7B", yellow = "#ECBE7B",
sun = "#f2c481", sun = "#f2c481",
purple = "#dc8ef3", purple = "#dc8ef3",
dark_purple = "#c678dd", dark_purple = "#c678dd",
teal = "#4db5bd", teal = "#4db5bd",
orange = "#ea9558", orange = "#ea9558",
cyan = "#46D9FF", cyan = "#46D9FF",
statusline_bg = "#2d3139", statusline_bg = "#2d3139",
lightbg = "#3a3e46", lightbg = "#3a3e46",
pmenu_bg = "#98be65", pmenu_bg = "#98be65",
folder_bg = "#51afef", folder_bg = "#51afef",
} }
M.base_16 = { M.base_16 = {
base00 = "#282c34", base00 = "#282c34",
base01 = "#32363e", base01 = "#32363e",
base02 = "#3c4048", base02 = "#3c4048",
base03 = "#4e525a", base03 = "#4e525a",
base04 = "#5a5e66", base04 = "#5a5e66",
base05 = "#a7aebb", base05 = "#a7aebb",
base06 = "#b3bac7", base06 = "#b3bac7",
base07 = "#bbc2cf", base07 = "#bbc2cf",
base08 = "#ff6c6b", base08 = "#ff6c6b",
base09 = "#ea9558", base09 = "#ea9558",
base0A = "#ECBE7B", base0A = "#ECBE7B",
base0B = "#98be65", base0B = "#98be65",
base0C = "#66c4ff", base0C = "#66c4ff",
base0D = "#48a6e6", base0D = "#48a6e6",
base0E = "#9c94d4", base0E = "#9c94d4",
base0F = "#c85a50", base0F = "#c85a50",
} }
M.polish_hl = { M.polish_hl = {
TSFieldKey = { fg = M.base_30.blue }, TSFieldKey = { fg = M.base_30.blue },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,64 +1,64 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#D3C6AA", white = "#D3C6AA",
darker_black = "#272f35", darker_black = "#272f35",
black = "#2b3339", -- nvim bg black = "#2b3339", -- nvim bg
black2 = "#323a40", black2 = "#323a40",
one_bg = "#363e44", one_bg = "#363e44",
one_bg2 = "#363e44", one_bg2 = "#363e44",
one_bg3 = "#3a4248", one_bg3 = "#3a4248",
grey = "#4e565c", grey = "#4e565c",
grey_fg = "#545c62", grey_fg = "#545c62",
grey_fg2 = "#626a70", grey_fg2 = "#626a70",
light_grey = "#656d73", light_grey = "#656d73",
red = "#e67e80", red = "#e67e80",
baby_pink = "#ce8196", baby_pink = "#ce8196",
pink = "#ff75a0", pink = "#ff75a0",
line = "#3a4248", -- for lines like vertsplit line = "#3a4248", -- for lines like vertsplit
green = "#83c092", green = "#83c092",
vibrant_green = "#a7c080", vibrant_green = "#a7c080",
nord_blue = "#78b4ac", nord_blue = "#78b4ac",
blue = "#7393b3", blue = "#7393b3",
yellow = "#dbbc7f", yellow = "#dbbc7f",
sun = "#d1b171", sun = "#d1b171",
purple = "#ecafcc", purple = "#ecafcc",
dark_purple = "#d699b6", dark_purple = "#d699b6",
teal = "#69a59d", teal = "#69a59d",
orange = "#e69875", orange = "#e69875",
cyan = "#95d1c9", cyan = "#95d1c9",
statusline_bg = "#2e363c", statusline_bg = "#2e363c",
lightbg = "#3d454b", lightbg = "#3d454b",
pmenu_bg = "#83c092", pmenu_bg = "#83c092",
folder_bg = "#7393b3", folder_bg = "#7393b3",
} }
M.base_16 = { M.base_16 = {
base00 = "#2b3339", base00 = "#2b3339",
base01 = "#323c41", base01 = "#323c41",
base02 = "#3a4248", base02 = "#3a4248",
base03 = "#424a50", base03 = "#424a50",
base04 = "#4a5258", base04 = "#4a5258",
base05 = "#d3c6aa", base05 = "#d3c6aa",
base06 = "#ddd0b4", base06 = "#ddd0b4",
base07 = "#e7dabe", base07 = "#e7dabe",
base08 = "#7fbbb3", base08 = "#7fbbb3",
base09 = "#d699b6", base09 = "#d699b6",
base0A = "#83c092", base0A = "#83c092",
base0B = "#dbbc7f", base0B = "#dbbc7f",
base0C = "#e69875", base0C = "#e69875",
base0D = "#a7c080", base0D = "#a7c080",
base0E = "#e67e80", base0E = "#e67e80",
base0F = "#e67e80", base0F = "#e67e80",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"
M.polish_hl = { M.polish_hl = {
TSPunctBracket = { fg = M.base_30.red }, TSPunctBracket = { fg = M.base_30.red },
TSTag = { fg = M.base_30.orange }, TSTag = { fg = M.base_30.orange },
TSTagDelimiter = { fg = M.base_30.green }, TSTagDelimiter = { fg = M.base_30.green },
TSConstructor = { fg = "#7fbbb3" }, TSConstructor = { fg = "#7fbbb3" },
} }
M = require("base46").override_theme(M, "everforest") M = require("base46").override_theme(M, "everforest")

@ -1,70 +1,70 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#272f35", white = "#272f35",
darker_black = "#f5efde", darker_black = "#f5efde",
black = "#fff9e8", -- nvim bg black = "#fff9e8", -- nvim bg
black2 = "#ebe5d4", black2 = "#ebe5d4",
one_bg = "#c6c2aa", one_bg = "#c6c2aa",
one_bg2 = "#b6b29a", one_bg2 = "#b6b29a",
one_bg3 = "#a6a28a", one_bg3 = "#a6a28a",
grey = "#a6b0a0", grey = "#a6b0a0",
grey_fg = "#939f91", grey_fg = "#939f91",
grey_fg2 = "#829181", grey_fg2 = "#829181",
light_grey = "#798878", light_grey = "#798878",
red = "#c85552", red = "#c85552",
baby_pink = "#ce8196", baby_pink = "#ce8196",
pink = "#ef6590", pink = "#ef6590",
line = "#e8e2d1", -- for lines like vertsplit line = "#e8e2d1", -- for lines like vertsplit
green = "#5da111", green = "#5da111",
vibrant_green = "#87a060", vibrant_green = "#87a060",
nord_blue = "#656c5f", nord_blue = "#656c5f",
blue = "#3a94c5", blue = "#3a94c5",
yellow = "#dfa000", yellow = "#dfa000",
sun = "#d1b171", sun = "#d1b171",
purple = "#b67996", purple = "#b67996",
dark_purple = "#966986", dark_purple = "#966986",
teal = "#69a59d", teal = "#69a59d",
orange = "#F7954F", orange = "#F7954F",
cyan = "#7521e9", cyan = "#7521e9",
statusline_bg = "#ede7d6", statusline_bg = "#ede7d6",
lightbg = "#d3cdbc", lightbg = "#d3cdbc",
pmenu_bg = "#5f9b93", pmenu_bg = "#5f9b93",
folder_bg = "#747b6e", folder_bg = "#747b6e",
} }
M.base_16 = { M.base_16 = {
base00 = "#fff9e8", base00 = "#fff9e8",
base01 = "#f6f0df", base01 = "#f6f0df",
base02 = "#ede7d6", base02 = "#ede7d6",
base03 = "#e5dfce", base03 = "#e5dfce",
base04 = "#ddd7c6", base04 = "#ddd7c6",
base05 = "#495157", base05 = "#495157",
base06 = "#3b4349", base06 = "#3b4349",
base07 = "#272f35", base07 = "#272f35",
base08 = "#5f9b93", base08 = "#5f9b93",
base09 = "#b67996", base09 = "#b67996",
base0A = "#8da101", base0A = "#8da101",
base0B = "#d59600", base0B = "#d59600",
base0C = "#ef615e", base0C = "#ef615e",
base0D = "#87a060", base0D = "#87a060",
base0E = "#c85552", base0E = "#c85552",
base0F = "#c85552", base0F = "#c85552",
} }
M.polish_hl = { M.polish_hl = {
DiffAdd = { fg = M.base_30.green }, DiffAdd = { fg = M.base_30.green },
TSTag = { fg = M.base_30.orange }, TSTag = { fg = M.base_30.orange },
TSField = { fg = M.base_16.base05 }, TSField = { fg = M.base_16.base05 },
TSInclude = { fg = M.base_16.base08 }, TSInclude = { fg = M.base_16.base08 },
TSConstructor = { fg = M.base_30.blue }, TSConstructor = { fg = M.base_30.blue },
WhichKeyDesc = { fg = M.base_30.white }, WhichKeyDesc = { fg = M.base_30.white },
WhichKey = { fg = M.base_30.white }, WhichKey = { fg = M.base_30.white },
NvimTreeFolderName = { fg = "#4e565c" }, NvimTreeFolderName = { fg = "#4e565c" },
TbLineThemeToggleBtn = { bg = M.base_30.one_bg }, TbLineThemeToggleBtn = { bg = M.base_30.one_bg },
Pmenu = { bg = M.base_30.black2 }, Pmenu = { bg = M.base_30.black2 },
IndentBlanklineContextStart = { bg = M.base_30.black2 }, IndentBlanklineContextStart = { bg = M.base_30.black2 },
St_pos_text = { fg = M.base_30.white }, St_pos_text = { fg = M.base_30.white },
} }
vim.opt.bg = "light" vim.opt.bg = "light"

@ -1,60 +1,60 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#cccdd1", white = "#cccdd1",
darker_black = "#0a0a0a", darker_black = "#0a0a0a",
black = "#101010", -- nvim bg black = "#101010", -- nvim bg
black2 = "#181818", black2 = "#181818",
one_bg = "#1e1e1e", one_bg = "#1e1e1e",
one_bg2 = "#252525", one_bg2 = "#252525",
one_bg3 = "#2c2c2c", one_bg3 = "#2c2c2c",
grey = "#363636", grey = "#363636",
grey_fg = "#3d3d3d", grey_fg = "#3d3d3d",
grey_fg2 = "#454545", grey_fg2 = "#454545",
light_grey = "#4d4d4d", light_grey = "#4d4d4d",
red = "#ff1a67", red = "#ff1a67",
baby_pink = "#ff86b7", baby_pink = "#ff86b7",
pink = "#ff77a8", pink = "#ff77a8",
line = "#2c2c2c", -- for lines like vertsplit line = "#2c2c2c", -- for lines like vertsplit
green = "#00e756", green = "#00e756",
vibrant_green = "#10f766", vibrant_green = "#10f766",
blue = "#29adff", blue = "#29adff",
nord_blue = "#5c6ab2", nord_blue = "#5c6ab2",
yellow = "#fff024", yellow = "#fff024",
sun = "#fff82c", sun = "#fff82c",
purple = "#a79ac0", purple = "#a79ac0",
dark_purple = "#998cb2", dark_purple = "#998cb2",
teal = "#0b925c", teal = "#0b925c",
orange = "#ffa300", orange = "#ffa300",
cyan = "#29adff", cyan = "#29adff",
statusline_bg = "#181818", statusline_bg = "#181818",
lightbg = "#272727", lightbg = "#272727",
pmenu_bg = "#5c6ab2", pmenu_bg = "#5c6ab2",
folder_bg = "#29adff", folder_bg = "#29adff",
} }
M.base_16 = { M.base_16 = {
base00 = "#101010", base00 = "#101010",
base01 = "#171717", base01 = "#171717",
base02 = "#1e1e1e", base02 = "#1e1e1e",
base03 = "#252525", base03 = "#252525",
base04 = "#2c2c2c", base04 = "#2c2c2c",
base05 = "#d8d9dd", base05 = "#d8d9dd",
base06 = "#d2d3d7", base06 = "#d2d3d7",
base07 = "#cccdd1", base07 = "#cccdd1",
base08 = "#ffb20f", base08 = "#ffb20f",
base09 = "#ff004d", base09 = "#ff004d",
base0A = "#be620a", base0A = "#be620a",
base0B = "#00e756", base0B = "#00e756",
base0C = "#29adff", base0C = "#29adff",
base0D = "#c54bcf", base0D = "#c54bcf",
base0E = "#ff4394", base0E = "#ff4394",
base0F = "#ffccaa", base0F = "#ffccaa",
} }
M.polish_hl = { M.polish_hl = {
TSVariable = { fg = M.base_30.orange }, TSVariable = { fg = M.base_30.orange },
TSParameter = { fg = M.base_30.white }, TSParameter = { fg = M.base_30.white },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#ebdbb2", white = "#ebdbb2",
darker_black = "#232323", darker_black = "#232323",
black = "#282828", -- nvim bg black = "#282828", -- nvim bg
black2 = "#2e2e2e", black2 = "#2e2e2e",
one_bg = "#353535", one_bg = "#353535",
one_bg2 = "#3f3f3f", one_bg2 = "#3f3f3f",
one_bg3 = "#444444", one_bg3 = "#444444",
grey = "#464646", grey = "#464646",
grey_fg = "#4e4e4e", grey_fg = "#4e4e4e",
grey_fg2 = "#505050", grey_fg2 = "#505050",
light_grey = "#565656", light_grey = "#565656",
red = "#fb4934", red = "#fb4934",
baby_pink = "#cc241d", baby_pink = "#cc241d",
pink = "#ff75a0", pink = "#ff75a0",
line = "#36393a", -- for lines like vertsplit line = "#36393a", -- for lines like vertsplit
green = "#b8bb26", green = "#b8bb26",
vibrant_green = "#a9b665", vibrant_green = "#a9b665",
nord_blue = "#83a598", nord_blue = "#83a598",
blue = "#458588", blue = "#458588",
yellow = "#d79921", yellow = "#d79921",
sun = "#fabd2f", sun = "#fabd2f",
purple = "#b4bbc8", purple = "#b4bbc8",
dark_purple = "#d3869b", dark_purple = "#d3869b",
teal = "#749689", teal = "#749689",
orange = "#e78a4e", orange = "#e78a4e",
cyan = "#82b3a8", cyan = "#82b3a8",
statusline_bg = "#2c2c2c", statusline_bg = "#2c2c2c",
lightbg = "#3d3d3d", lightbg = "#3d3d3d",
pmenu_bg = "#83a598", pmenu_bg = "#83a598",
folder_bg = "#749689", folder_bg = "#749689",
} }
M.base_16 = { M.base_16 = {
base00 = "#282828", base00 = "#282828",
base01 = "#3c3836", base01 = "#3c3836",
base02 = "#504945", base02 = "#504945",
base03 = "#665c54", base03 = "#665c54",
base04 = "#bdae93", base04 = "#bdae93",
base05 = "#d5c4a1", base05 = "#d5c4a1",
base06 = "#ebdbb2", base06 = "#ebdbb2",
base07 = "#fbf1c7", base07 = "#fbf1c7",
base08 = "#fb4934", base08 = "#fb4934",
base09 = "#fe8019", base09 = "#fe8019",
base0A = "#fabd2f", base0A = "#fabd2f",
base0B = "#b8bb26", base0B = "#b8bb26",
base0C = "#8ec07c", base0C = "#8ec07c",
base0D = "#83a598", base0D = "#83a598",
base0E = "#d3869b", base0E = "#d3869b",
base0F = "#d65d0e", base0F = "#d65d0e",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,61 +1,61 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#504945", white = "#504945",
darker_black = "#e8dbb2", darker_black = "#e8dbb2",
black = "#F2E5BC", -- nvim bg black = "#F2E5BC", -- nvim bg
black2 = "#e3d6ad", black2 = "#e3d6ad",
one_bg = "#e5d8af", one_bg = "#e5d8af",
one_bg2 = "#d8cba2", one_bg2 = "#d8cba2",
one_bg3 = "#cabd94", one_bg3 = "#cabd94",
grey = "#c0b38a", grey = "#c0b38a",
grey_fg = "#b6a980", grey_fg = "#b6a980",
grey_fg2 = "#ac9f76", grey_fg2 = "#ac9f76",
light_grey = "#a2956c", light_grey = "#a2956c",
red = "#d65d0e", red = "#d65d0e",
baby_pink = "#af3a03", baby_pink = "#af3a03",
pink = "#9d0006", pink = "#9d0006",
line = "#ded1a8", -- for lines like vertsplit line = "#ded1a8", -- for lines like vertsplit
green = "#79740e", green = "#79740e",
vibrant_green = "#7f7a14", vibrant_green = "#7f7a14",
nord_blue = "#7b9d90", nord_blue = "#7b9d90",
blue = "#458588", blue = "#458588",
yellow = "#d79921", yellow = "#d79921",
sun = "#dd9f27", sun = "#dd9f27",
purple = "#8f3f71", purple = "#8f3f71",
dark_purple = "#853567", dark_purple = "#853567",
teal = "#749689", teal = "#749689",
orange = "#b57614", orange = "#b57614",
cyan = "#82b3a8", cyan = "#82b3a8",
statusline_bg = "#e9dcb3", statusline_bg = "#e9dcb3",
lightbg = "#ddd0a7", lightbg = "#ddd0a7",
pmenu_bg = "#739588", pmenu_bg = "#739588",
folder_bg = "#746d69", folder_bg = "#746d69",
} }
M.base_16 = { M.base_16 = {
base00 = "#F2E5BC", base00 = "#F2E5BC",
base01 = "#e5d8af", base01 = "#e5d8af",
base02 = "#d8cba2", base02 = "#d8cba2",
base03 = "#cabd94", base03 = "#cabd94",
base04 = "#c0b38a", base04 = "#c0b38a",
base05 = "#504945", base05 = "#504945",
base06 = "#3c3836", base06 = "#3c3836",
base07 = "#282828", base07 = "#282828",
base08 = "#9d0006", base08 = "#9d0006",
base09 = "#af3a03", base09 = "#af3a03",
base0A = "#b57614", base0A = "#b57614",
base0B = "#79740e", base0B = "#79740e",
base0C = "#427b58", base0C = "#427b58",
base0D = "#076678", base0D = "#076678",
base0E = "#8f3f71", base0E = "#8f3f71",
base0F = "#d65d0e", base0F = "#d65d0e",
} }
vim.opt.bg = "light" vim.opt.bg = "light"
M.polish_hl = { M.polish_hl = {
TbLineThemeToggleBtn = { fg = M.base_30.black, bg = M.base_30.white }, TbLineThemeToggleBtn = { fg = M.base_30.black, bg = M.base_30.white },
} }
M = require("base46").override_theme(M, "gruvbox_light") M = require("base46").override_theme(M, "gruvbox_light")

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#c7b89d", white = "#c7b89d",
darker_black = "#1a1d1e", darker_black = "#1a1d1e",
black = "#1e2122", -- nvim bg black = "#1e2122", -- nvim bg
black2 = "#242728", black2 = "#242728",
one_bg = "#282b2c", one_bg = "#282b2c",
one_bg2 = "#393c3d", one_bg2 = "#393c3d",
one_bg3 = "#404344", one_bg3 = "#404344",
grey = "#484b4c", grey = "#484b4c",
grey_fg = "#575a5b", grey_fg = "#575a5b",
grey_fg2 = "#545758", grey_fg2 = "#545758",
light_grey = "#606364", light_grey = "#606364",
red = "#ec6b64", red = "#ec6b64",
baby_pink = "#ce8196", baby_pink = "#ce8196",
pink = "#ff75a0", pink = "#ff75a0",
line = "#323536", -- for lines like vertsplit line = "#323536", -- for lines like vertsplit
green = "#89b482", green = "#89b482",
vibrant_green = "#a9b665", vibrant_green = "#a9b665",
nord_blue = "#6f8faf", nord_blue = "#6f8faf",
blue = "#6d8dad", blue = "#6d8dad",
yellow = "#d6b676", yellow = "#d6b676",
sun = "#d1b171", sun = "#d1b171",
purple = "#9385b4", purple = "#9385b4",
dark_purple = "#887aa9", dark_purple = "#887aa9",
teal = "#749689", teal = "#749689",
orange = "#e78a4e", orange = "#e78a4e",
cyan = "#82b3a8", cyan = "#82b3a8",
statusline_bg = "#222526", statusline_bg = "#222526",
lightbg = "#2d3031", lightbg = "#2d3031",
pmenu_bg = "#89b482", pmenu_bg = "#89b482",
folder_bg = "#6d8dad", folder_bg = "#6d8dad",
} }
M.base_16 = { M.base_16 = {
base0A = "#e0c080", base0A = "#e0c080",
base04 = "#d4be98", base04 = "#d4be98",
base07 = "#c7b89d", base07 = "#c7b89d",
base05 = "#c0b196", base05 = "#c0b196",
base0E = "#d3869b", base0E = "#d3869b",
base0D = "#7daea3", base0D = "#7daea3",
base0C = "#86b17f", base0C = "#86b17f",
base0B = "#a9b665", base0B = "#a9b665",
base02 = "#36393a", base02 = "#36393a",
base0F = "#d65d0e", base0F = "#d65d0e",
base03 = "#404344", base03 = "#404344",
base08 = "#ec6b64", base08 = "#ec6b64",
base01 = "#2c2f30", base01 = "#2c2f30",
base00 = "#1e2122", base00 = "#1e2122",
base09 = "#e78a4e", base09 = "#e78a4e",
base06 = "#c3b499", base06 = "#c3b499",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#e8e8d3", white = "#e8e8d3",
darker_black = "#101010", darker_black = "#101010",
black = "#151515", -- nvim bg black = "#151515", -- nvim bg
black2 = "#1c1c1c", black2 = "#1c1c1c",
one_bg = "#252525", one_bg = "#252525",
one_bg2 = "#2e2e2e", one_bg2 = "#2e2e2e",
one_bg3 = "#3a3a3a", one_bg3 = "#3a3a3a",
grey = "#424242", grey = "#424242",
grey_fg = "#474747", grey_fg = "#474747",
grey_fg2 = "#4c4c4c", grey_fg2 = "#4c4c4c",
light_grey = "#525252", light_grey = "#525252",
red = "#cf6a4c", red = "#cf6a4c",
baby_pink = "#da7557", baby_pink = "#da7557",
pink = "#f0a0c0", pink = "#f0a0c0",
line = "#2d2d2d", -- for lines like vertsplit line = "#2d2d2d", -- for lines like vertsplit
green = "#99ad6a", green = "#99ad6a",
vibrant_green = "#c2cea6", vibrant_green = "#c2cea6",
nord_blue = "#768cb4", nord_blue = "#768cb4",
blue = "#8197bf", blue = "#8197bf",
yellow = "#fad07a", yellow = "#fad07a",
sun = "#ffb964", sun = "#ffb964",
purple = "#ea94ea", purple = "#ea94ea",
dark_purple = "#e58fe5", dark_purple = "#e58fe5",
teal = "#668799", teal = "#668799",
orange = "#e78a4e", orange = "#e78a4e",
cyan = "#8fbfdc", cyan = "#8fbfdc",
statusline_bg = "#191919", statusline_bg = "#191919",
lightbg = "#2c2c2c", lightbg = "#2c2c2c",
pmenu_bg = "#8197bf", pmenu_bg = "#8197bf",
folder_bg = "#8197bf", folder_bg = "#8197bf",
} }
M.base_16 = { M.base_16 = {
base00 = "#151515", base00 = "#151515",
base01 = "#2e2e2e", base01 = "#2e2e2e",
base02 = "#3a3a3a", base02 = "#3a3a3a",
base03 = "#424242", base03 = "#424242",
base04 = "#474747", base04 = "#474747",
base05 = "#d9d9c4", base05 = "#d9d9c4",
base06 = "#dedec9", base06 = "#dedec9",
base07 = "#f1f1e5", base07 = "#f1f1e5",
base08 = "#dd785a", base08 = "#dd785a",
base09 = "#c99f4a", base09 = "#c99f4a",
base0A = "#e1b655", base0A = "#e1b655",
base0B = "#99ad6a", base0B = "#99ad6a",
base0C = "#7187af", base0C = "#7187af",
base0D = "#8fa5cd", base0D = "#8fa5cd",
base0E = "#e18be1", base0E = "#e18be1",
base0F = "#cf6a4c", base0F = "#cf6a4c",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,61 +1,61 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#DCD7BA", white = "#DCD7BA",
darker_black = "#191922", darker_black = "#191922",
black = "#1F1F28", -- nvim bg black = "#1F1F28", -- nvim bg
black2 = "#25252e", black2 = "#25252e",
one_bg = "#272730", one_bg = "#272730",
one_bg2 = "#2f2f38", one_bg2 = "#2f2f38",
one_bg3 = "#363646", one_bg3 = "#363646",
grey = "#43434c", grey = "#43434c",
grey_fg = "#4c4c55", grey_fg = "#4c4c55",
grey_fg2 = "#53535c", grey_fg2 = "#53535c",
light_grey = "#5c5c65", light_grey = "#5c5c65",
red = "#d8616b", red = "#d8616b",
baby_pink = "#D27E99", baby_pink = "#D27E99",
pink = "#c8748f", pink = "#c8748f",
line = "#31313a", -- for lines like vertsplit line = "#31313a", -- for lines like vertsplit
green = "#98BB6C", green = "#98BB6C",
vibrant_green = "#a3c677", vibrant_green = "#a3c677",
nord_blue = "#7E9CD8", nord_blue = "#7E9CD8",
blue = "#7FB4CA", blue = "#7FB4CA",
yellow = "#FF9E3B", yellow = "#FF9E3B",
sun = "#FFA066", sun = "#FFA066",
purple = "#a48ec7", purple = "#a48ec7",
dark_purple = "#9c86bf", dark_purple = "#9c86bf",
teal = "#7AA89F", teal = "#7AA89F",
orange = "#fa9b61", orange = "#fa9b61",
cyan = "#A3D4D5", cyan = "#A3D4D5",
statusline_bg = "#24242d", statusline_bg = "#24242d",
lightbg = "#33333c", lightbg = "#33333c",
pmenu_bg = "#a48ec7", pmenu_bg = "#a48ec7",
folder_bg = "#7E9CD8", folder_bg = "#7E9CD8",
} }
M.base_16 = { M.base_16 = {
base00 = "#1f1f28", base00 = "#1f1f28",
base01 = "#2a2a37", base01 = "#2a2a37",
base02 = "#223249", base02 = "#223249",
base03 = "#363646", base03 = "#363646",
base04 = "#4c4c55", base04 = "#4c4c55",
base05 = "#c8c3a6", base05 = "#c8c3a6",
base06 = "#d2cdb0", base06 = "#d2cdb0",
base07 = "#DCD7BA", base07 = "#DCD7BA",
base08 = "#d8616b", base08 = "#d8616b",
base09 = "#ffa066", base09 = "#ffa066",
base0A = "#dca561", base0A = "#dca561",
base0B = "#98bb6c", base0B = "#98bb6c",
base0C = "#7fb4ca", base0C = "#7fb4ca",
base0D = "#7e9cd8", base0D = "#7e9cd8",
base0E = "#9c86bf", base0E = "#9c86bf",
base0F = "#d8616b", base0F = "#d8616b",
} }
M.polish_hl = { M.polish_hl = {
TSInclude = { fg = M.base_30.purple }, TSInclude = { fg = M.base_30.purple },
TSURI = { fg = M.base_30.blue }, TSURI = { fg = M.base_30.blue },
TSTagDelimiter = { fg = M.base_30.red }, TSTagDelimiter = { fg = M.base_30.red },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,60 +1,60 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#bbc2cf", white = "#bbc2cf",
darker_black = "#1f222b", darker_black = "#1f222b",
black = "#242730", -- nvim bg black = "#242730", -- nvim bg
black2 = "#292c35", black2 = "#292c35",
one_bg = "#2e313a", -- real bg of onedark one_bg = "#2e313a", -- real bg of onedark
one_bg2 = "#373a43", one_bg2 = "#373a43",
one_bg3 = "#3f424b", one_bg3 = "#3f424b",
grey = "#494c55", grey = "#494c55",
grey_fg = "#52555e", grey_fg = "#52555e",
grey_fg2 = "#5b5e67", grey_fg2 = "#5b5e67",
light_grey = "#63666f", light_grey = "#63666f",
red = "#e36d76", red = "#e36d76",
baby_pink = "#f98385", baby_pink = "#f98385",
pink = "#f36d76", pink = "#f36d76",
line = "#363942", -- for lines like vertsplit line = "#363942", -- for lines like vertsplit
green = "#96c367", green = "#96c367",
vibrant_green = "#99c366", vibrant_green = "#99c366",
nord_blue = "#81A1C1", nord_blue = "#81A1C1",
blue = "#51afef", blue = "#51afef",
yellow = "#e6c181", yellow = "#e6c181",
sun = "#fce668", sun = "#fce668",
purple = "#c885d7", purple = "#c885d7",
dark_purple = "#b26fc1", dark_purple = "#b26fc1",
teal = "#34bfd0", teal = "#34bfd0",
orange = "#d39467", orange = "#d39467",
cyan = "#41afef", cyan = "#41afef",
statusline_bg = "#292c35", statusline_bg = "#292c35",
lightbg = "#3d4049", lightbg = "#3d4049",
pmenu_bg = "#99c366", pmenu_bg = "#99c366",
folder_bg = "#61afef", folder_bg = "#61afef",
} }
M.base_16 = { M.base_16 = {
base00 = "#242730", base00 = "#242730",
base01 = "#2a2e38", base01 = "#2a2e38",
base02 = "#484854", base02 = "#484854",
base03 = "#545862", base03 = "#545862",
base04 = "#5b5e67", base04 = "#5b5e67",
base05 = "#afb6c3", base05 = "#afb6c3",
base06 = "#b5bcc9", base06 = "#b5bcc9",
base07 = "#bbc2cf", base07 = "#bbc2cf",
base08 = "#d39467", base08 = "#d39467",
base09 = "#b3a5d4", base09 = "#b3a5d4",
base0A = "#61afef", base0A = "#61afef",
base0B = "#e6c181", base0B = "#e6c181",
base0C = "#61afef", base0C = "#61afef",
base0D = "#96c376", base0D = "#96c376",
base0E = "#e36d76", base0E = "#e36d76",
base0F = "#e36d76", base0F = "#e36d76",
} }
M.polish_hl = { M.polish_hl = {
TSParameter = { fg = M.base_30.blue }, TSParameter = { fg = M.base_30.blue },
TSFieldKey = { fg = M.base_30.red }, TSFieldKey = { fg = M.base_30.red },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,59 +1,59 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#F0f0f0", white = "#F0f0f0",
darker_black = "#090909", darker_black = "#090909",
black = "#0f0f0f", -- nvim bg black = "#0f0f0f", -- nvim bg
black2 = "#181818", black2 = "#181818",
one_bg = "#191919", one_bg = "#191919",
one_bg2 = "#222222", one_bg2 = "#222222",
one_bg3 = "#2a2a2a", one_bg3 = "#2a2a2a",
grey = "#373737", grey = "#373737",
grey_fg = "#414141", grey_fg = "#414141",
grey_fg2 = "#4b4b4b", grey_fg2 = "#4b4b4b",
light_grey = "#535353", light_grey = "#535353",
red = "#ac8a8c", red = "#ac8a8c",
baby_pink = "#bb999b", baby_pink = "#bb999b",
pink = "#AC8AAC", pink = "#AC8AAC",
line = "#242424", -- for lines like vertsplit line = "#242424", -- for lines like vertsplit
green = "#8aac8b", green = "#8aac8b",
vibrant_green = "#99bb9a", vibrant_green = "#99bb9a",
blue = "#9691b3", blue = "#9691b3",
nord_blue = "#8F8AAC", nord_blue = "#8F8AAC",
yellow = "#ACA98A", yellow = "#ACA98A",
sun = "#b3b091", sun = "#b3b091",
purple = "#C49EC4", purple = "#C49EC4",
dark_purple = "#b58fb5", dark_purple = "#b58fb5",
teal = "#8fb4b5", teal = "#8fb4b5",
orange = "#9d9a7b", orange = "#9d9a7b",
cyan = "#9EC3C4", cyan = "#9EC3C4",
statusline_bg = "#131313", statusline_bg = "#131313",
lightbg = "#292929", lightbg = "#292929",
pmenu_bg = "#8aac8b", pmenu_bg = "#8aac8b",
folder_bg = "#8F8AAC", folder_bg = "#8F8AAC",
} }
M.base_16 = { M.base_16 = {
base00 = "#0f0f0f", base00 = "#0f0f0f",
base01 = "#151515", base01 = "#151515",
base02 = "#191919", base02 = "#191919",
base03 = "#222222", base03 = "#222222",
base04 = "#535353", base04 = "#535353",
base05 = "#d8d8d8", base05 = "#d8d8d8",
base06 = "#e6e6e6", base06 = "#e6e6e6",
base07 = "#f0f0f0", base07 = "#f0f0f0",
base08 = "#b18f91", base08 = "#b18f91",
base09 = "#d8bb92", base09 = "#d8bb92",
base0A = "#b1ae8f", base0A = "#b1ae8f",
base0B = "#8aac8b", base0B = "#8aac8b",
base0C = "#91b2b3", base0C = "#91b2b3",
base0D = "#a5a0c2", base0D = "#a5a0c2",
base0E = "#ac8aac", base0E = "#ac8aac",
base0F = "#b39193", base0F = "#b39193",
} }
M.polish_hl = { M.polish_hl = {
TSVariable = { fg = M.base_16.base05 }, TSVariable = { fg = M.base_16.base05 },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#cdcecf", white = "#cdcecf",
darker_black = "#121c29", darker_black = "#121c29",
black = "#192330", black = "#192330",
black2 = "#202a37", black2 = "#202a37",
one_bg = "#252f3c", -- real bg of onedark one_bg = "#252f3c", -- real bg of onedark
one_bg2 = "#313b48", one_bg2 = "#313b48",
one_bg3 = "#3d4754", one_bg3 = "#3d4754",
grey = "#495360", grey = "#495360",
grey_fg = "#535d6a", grey_fg = "#535d6a",
grey_fg2 = "#5c6673", grey_fg2 = "#5c6673",
light_grey = "#646e7b", light_grey = "#646e7b",
red = "#c94f6d", red = "#c94f6d",
baby_pink = "#e26886", baby_pink = "#e26886",
pink = "#d85e7c", pink = "#d85e7c",
line = "#2a3441", line = "#2a3441",
green = "#8ebaa4", green = "#8ebaa4",
vibrant_green = "#6ad4d6", vibrant_green = "#6ad4d6",
blue = "#719cd6", blue = "#719cd6",
nord_blue = "#86abdc", nord_blue = "#86abdc",
yellow = "#dbc074", yellow = "#dbc074",
sun = "#e0c989", sun = "#e0c989",
purple = "#baa1e2", purple = "#baa1e2",
dark_purple = "#9d79d6", dark_purple = "#9d79d6",
teal = "#5cc6c8", teal = "#5cc6c8",
orange = "#fe9373", orange = "#fe9373",
cyan = "#8be5e7", cyan = "#8be5e7",
statusline_bg = "#202a37", statusline_bg = "#202a37",
lightbg = "#313b48", lightbg = "#313b48",
pmenu_bg = "#719cd6", pmenu_bg = "#719cd6",
folder_bg = "#719cd6", folder_bg = "#719cd6",
} }
M.base_16 = { M.base_16 = {
base00 = "#192330", base00 = "#192330",
base01 = "#252f3c", base01 = "#252f3c",
base02 = "#313b48", base02 = "#313b48",
base03 = "#3d4754", base03 = "#3d4754",
base04 = "#495360", base04 = "#495360",
base05 = "#c0c8d5", base05 = "#c0c8d5",
base06 = "#c7cfdc", base06 = "#c7cfdc",
base07 = "#ced6e3", base07 = "#ced6e3",
base08 = "#e26886", base08 = "#e26886",
base09 = "#fe9373", base09 = "#fe9373",
base0A = "#dbc074", base0A = "#dbc074",
base0B = "#8ebaa4", base0B = "#8ebaa4",
base0C = "#7ad4d6", base0C = "#7ad4d6",
base0D = "#86abdc", base0D = "#86abdc",
base0E = "#9d79d6", base0E = "#9d79d6",
base0F = "#d85e7c", base0F = "#d85e7c",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#e0d6bd", white = "#e0d6bd",
darker_black = "#13141a", darker_black = "#13141a",
black = "#18191f", --nvim bg black = "#18191f", --nvim bg
black2 = "#202127", black2 = "#202127",
one_bg = "#27282e", one_bg = "#27282e",
one_bg2 = "#2d2e34", one_bg2 = "#2d2e34",
one_bg3 = "#33343a", one_bg3 = "#33343a",
grey = "#3d3e44", grey = "#3d3e44",
grey_fg = "#48494f", grey_fg = "#48494f",
grey_fg2 = "#4d4e54", grey_fg2 = "#4d4e54",
light_grey = "#55565c", light_grey = "#55565c",
red = "#a67476", red = "#a67476",
baby_pink = "#d6b3bd", baby_pink = "#d6b3bd",
pink = "#c99aa7", pink = "#c99aa7",
line = "#313238", --for lines like vertsplit line = "#313238", --for lines like vertsplit
green = "#8aa387", green = "#8aa387",
vibrant_green = "#94ad91", vibrant_green = "#94ad91",
nord_blue = "#8d9bb3", nord_blue = "#8d9bb3",
blue = "#5a6986", blue = "#5a6986",
yellow = "#ccb89c", yellow = "#ccb89c",
sun = "#deb88a", sun = "#deb88a",
purple = "#b8aad9", purple = "#b8aad9",
dark_purple = "#a99bca", dark_purple = "#a99bca",
teal = "#7aacaa", teal = "#7aacaa",
orange = "#cd9672", orange = "#cd9672",
cyan = "#90a0a0", cyan = "#90a0a0",
statusline_bg = "#1d1e24", statusline_bg = "#1d1e24",
lightbg = "#2b2c32", lightbg = "#2b2c32",
pmenu_bg = "#b58385", pmenu_bg = "#b58385",
folder_bg = "#90a0a0", folder_bg = "#90a0a0",
} }
M.base_16 = { M.base_16 = {
base00 = "#18191f", base00 = "#18191f",
base01 = "#222329", base01 = "#222329",
base02 = "#2c2d33", base02 = "#2c2d33",
base03 = "#3c3d43", base03 = "#3c3d43",
base04 = "#48494f", base04 = "#48494f",
base05 = "#b8af9e", base05 = "#b8af9e",
base06 = "#cbc0ab", base06 = "#cbc0ab",
base07 = "#e0d6bd", base07 = "#e0d6bd",
base08 = "#b8aad9", base08 = "#b8aad9",
base09 = "#cd9672", base09 = "#cd9672",
base0A = "#ccb89c", base0A = "#ccb89c",
base0B = "#8aa387", base0B = "#8aa387",
base0C = "#7aacaa", base0C = "#7aacaa",
base0D = "#b58385", base0D = "#b58385",
base0E = "#8e9cb4", base0E = "#8e9cb4",
base0F = "#90a0a0", base0F = "#90a0a0",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,62 +1,62 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#d6deeb", white = "#d6deeb",
darker_black = "#010f20", darker_black = "#010f20",
black = "#011627", black = "#011627",
black2 = "#091e2f", black2 = "#091e2f",
one_bg = "#112637", -- real bg of onedark one_bg = "#112637", -- real bg of onedark
one_bg2 = "#1b3041", one_bg2 = "#1b3041",
one_bg3 = "#253a4b", one_bg3 = "#253a4b",
grey = "#2c4152", grey = "#2c4152",
grey_fg = "#34495a", grey_fg = "#34495a",
grey_fg2 = "#3c5162", grey_fg2 = "#3c5162",
light_grey = "#495e6f", light_grey = "#495e6f",
red = "#f78c6c", red = "#f78c6c",
baby_pink = "#ff6cca", baby_pink = "#ff6cca",
pink = "#fa58b6", pink = "#fa58b6",
line = "#182d3e", line = "#182d3e",
green = "#29E68E", green = "#29E68E",
vibrant_green = "#22da6e", vibrant_green = "#22da6e",
blue = "#82aaff", blue = "#82aaff",
nord_blue = "#78a0f5", nord_blue = "#78a0f5",
yellow = "#ffcb8b", yellow = "#ffcb8b",
sun = "#ffe9a9", sun = "#ffe9a9",
purple = "#c792ea", purple = "#c792ea",
dark_purple = "#a974cc", dark_purple = "#a974cc",
teal = "#96CEB4", teal = "#96CEB4",
orange = "#FFAD60", orange = "#FFAD60",
cyan = "#aad2ff", cyan = "#aad2ff",
statusline_bg = "#051a2b", statusline_bg = "#051a2b",
lightbg = "#1a2f40", lightbg = "#1a2f40",
pmenu_bg = "#82aaff", pmenu_bg = "#82aaff",
folder_bg = "#82aaff", folder_bg = "#82aaff",
} }
M.base_16 = { M.base_16 = {
base00 = "#011627", base00 = "#011627",
base01 = "#0c2132", base01 = "#0c2132",
base02 = "#172c3d", base02 = "#172c3d",
base03 = "#223748", base03 = "#223748",
base04 = "#2c4152", base04 = "#2c4152",
base05 = "#ced6e3", base05 = "#ced6e3",
base06 = "#d6deeb", base06 = "#d6deeb",
base07 = "#feffff", base07 = "#feffff",
base08 = "#ecc48d", base08 = "#ecc48d",
base09 = "#f78c6c", base09 = "#f78c6c",
base0A = "#c792ea", base0A = "#c792ea",
base0B = "#29E68E", base0B = "#29E68E",
base0C = "#aad2ff", base0C = "#aad2ff",
base0D = "#82aaff", base0D = "#82aaff",
base0E = "#c792ea", base0E = "#c792ea",
base0F = "#f78c6c", base0F = "#f78c6c",
} }
M.polish_hl = { M.polish_hl = {
TSParameter = { fg = M.base_30.orange }, TSParameter = { fg = M.base_30.orange },
TSKeywordReturn = { fg = M.base_30.cyan }, TSKeywordReturn = { fg = M.base_30.cyan },
TSConditional = { fg = M.base_30.cyan }, TSConditional = { fg = M.base_30.cyan },
PmenuSel = { bg = M.base_30.blue }, PmenuSel = { bg = M.base_30.blue },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,60 +1,60 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#abb2bf", white = "#abb2bf",
darker_black = "#2a303c", darker_black = "#2a303c",
black = "#2E3440", -- nvim bg black = "#2E3440", -- nvim bg
black2 = "#343a46", black2 = "#343a46",
one_bg = "#373d49", one_bg = "#373d49",
one_bg2 = "#464c58", one_bg2 = "#464c58",
one_bg3 = "#494f5b", one_bg3 = "#494f5b",
grey = "#4b515d", grey = "#4b515d",
grey_fg = "#565c68", grey_fg = "#565c68",
grey_fg2 = "#606672", grey_fg2 = "#606672",
light_grey = "#646a76", light_grey = "#646a76",
red = "#BF616A", red = "#BF616A",
baby_pink = "#de878f", baby_pink = "#de878f",
pink = "#d57780", pink = "#d57780",
line = "#414753", -- for lines like vertsplit line = "#414753", -- for lines like vertsplit
green = "#A3BE8C", green = "#A3BE8C",
vibrant_green = "#afca98", vibrant_green = "#afca98",
blue = "#7797b7", blue = "#7797b7",
nord_blue = "#81A1C1", nord_blue = "#81A1C1",
yellow = "#EBCB8B", yellow = "#EBCB8B",
sun = "#e1c181", sun = "#e1c181",
purple = "#B48EAD", purple = "#B48EAD",
dark_purple = "#a983a2", dark_purple = "#a983a2",
teal = "#6484a4", teal = "#6484a4",
orange = "#e39a83", orange = "#e39a83",
cyan = "#9aafe6", cyan = "#9aafe6",
statusline_bg = "#333945", statusline_bg = "#333945",
lightbg = "#3f4551", lightbg = "#3f4551",
pmenu_bg = "#A3BE8C", pmenu_bg = "#A3BE8C",
folder_bg = "#7797b7", folder_bg = "#7797b7",
} }
M.base_16 = { M.base_16 = {
base00 = "#2E3440", base00 = "#2E3440",
base01 = "#3B4252", base01 = "#3B4252",
base02 = "#434C5E", base02 = "#434C5E",
base03 = "#4C566A", base03 = "#4C566A",
base04 = "#D8DEE9", base04 = "#D8DEE9",
base05 = "#E5E9F0", base05 = "#E5E9F0",
base06 = "#ECEFF4", base06 = "#ECEFF4",
base07 = "#8FBCBB", base07 = "#8FBCBB",
base08 = "#88C0D0", base08 = "#88C0D0",
base09 = "#81A1C1", base09 = "#81A1C1",
base0A = "#88C0D0", base0A = "#88C0D0",
base0B = "#A3BE8C", base0B = "#A3BE8C",
base0C = "#81A1C1", base0C = "#81A1C1",
base0D = "#81A1C1", base0D = "#81A1C1",
base0E = "#81A1C1", base0E = "#81A1C1",
base0F = "#B48EAD", base0F = "#B48EAD",
} }
M.polish_hl = { M.polish_hl = {
TSPunctBracket = { fg = M.base_30.white }, TSPunctBracket = { fg = M.base_30.white },
TSPunctDelimiter = { fg = M.base_30.white }, TSPunctDelimiter = { fg = M.base_30.white },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,69 +1,69 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#54555b", white = "#54555b",
darker_black = "#efeff0", darker_black = "#efeff0",
black = "#fafafa", -- nvim bg black = "#fafafa", -- nvim bg
black2 = "#EAEAEB", black2 = "#EAEAEB",
one_bg = "#dadadb", -- real bg of onedark one_bg = "#dadadb", -- real bg of onedark
one_bg2 = "#d4d4d5", one_bg2 = "#d4d4d5",
one_bg3 = "#cccccd", one_bg3 = "#cccccd",
grey = "#b7b7b8", grey = "#b7b7b8",
grey_fg = "#b0b0b1", grey_fg = "#b0b0b1",
grey_fg2 = "#a9a9aa", grey_fg2 = "#a9a9aa",
light_grey = "#a2a2a3", light_grey = "#a2a2a3",
red = "#d84a3d", red = "#d84a3d",
baby_pink = "#F07178", baby_pink = "#F07178",
pink = "#ff75a0", pink = "#ff75a0",
line = "#e2e2e2", -- for lines like vertsplit line = "#e2e2e2", -- for lines like vertsplit
green = "#50a14f", green = "#50a14f",
vibrant_green = "#7eca9c", vibrant_green = "#7eca9c",
nord_blue = "#428bab", nord_blue = "#428bab",
blue = "#4078f2", blue = "#4078f2",
yellow = "#c18401", yellow = "#c18401",
sun = "#dea95f", sun = "#dea95f",
purple = "#a28dcd", purple = "#a28dcd",
dark_purple = "#8e79b9", dark_purple = "#8e79b9",
teal = "#519ABA", teal = "#519ABA",
orange = "#FF6A00", orange = "#FF6A00",
cyan = "#0b8ec6", cyan = "#0b8ec6",
statusline_bg = "#ececec", statusline_bg = "#ececec",
lightbg = "#d3d3d3", lightbg = "#d3d3d3",
pmenu_bg = "#5e5f65", pmenu_bg = "#5e5f65",
folder_bg = "#6C6C6C", folder_bg = "#6C6C6C",
} }
M.base_16 = { M.base_16 = {
base00 = "#fafafa", base00 = "#fafafa",
base01 = "#f4f4f4", base01 = "#f4f4f4",
base02 = "#e5e5e6", base02 = "#e5e5e6",
base03 = "#dfdfe0", base03 = "#dfdfe0",
base04 = "#d7d7d8", base04 = "#d7d7d8",
base05 = "#383a42", base05 = "#383a42",
base06 = "#202227", base06 = "#202227",
base07 = "#090a0b", base07 = "#090a0b",
base08 = "#d84a3d", base08 = "#d84a3d",
base09 = "#a626a4", base09 = "#a626a4",
base0A = "#c18401", base0A = "#c18401",
base0B = "#50a14f", base0B = "#50a14f",
base0C = "#0070a8", base0C = "#0070a8",
base0D = "#4078f2", base0D = "#4078f2",
base0E = "#a626a4", base0E = "#a626a4",
base0F = "#986801", base0F = "#986801",
} }
vim.opt.bg = "light" vim.opt.bg = "light"
M.polish_hl = { M.polish_hl = {
TelescopePromptPrefix = { fg = M.base_30.white }, TelescopePromptPrefix = { fg = M.base_30.white },
TelescopeSelection = { bg = M.base_30.one_bg, fg = M.base_30.white }, TelescopeSelection = { bg = M.base_30.one_bg, fg = M.base_30.white },
TSPunctBracket = { fg = M.base_30.nord_blue }, TSPunctBracket = { fg = M.base_30.nord_blue },
FloatBorder = { fg = M.base_16.base05 }, FloatBorder = { fg = M.base_16.base05 },
DiffAdd = { fg = M.base_16.base05 }, DiffAdd = { fg = M.base_16.base05 },
TbLineThemeToggleBtn = { bg = M.base_30.one_bg3 }, TbLineThemeToggleBtn = { bg = M.base_30.one_bg3 },
WhichKeyDesc = { fg = M.base_30.white }, WhichKeyDesc = { fg = M.base_30.white },
Pmenu = { bg = M.base_30.black2 }, Pmenu = { bg = M.base_30.black2 },
St_pos_text = { fg = M.base_30.white }, St_pos_text = { fg = M.base_30.white },
} }
M = require("base46").override_theme(M, "one_light") M = require("base46").override_theme(M, "one_light")

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#abb2bf", white = "#abb2bf",
darker_black = "#1b1f27", darker_black = "#1b1f27",
black = "#1e222a", -- nvim bg black = "#1e222a", -- nvim bg
black2 = "#252931", black2 = "#252931",
one_bg = "#282c34", -- real bg of onedark one_bg = "#282c34", -- real bg of onedark
one_bg2 = "#353b45", one_bg2 = "#353b45",
one_bg3 = "#373b43", one_bg3 = "#373b43",
grey = "#42464e", grey = "#42464e",
grey_fg = "#565c64", grey_fg = "#565c64",
grey_fg2 = "#6f737b", grey_fg2 = "#6f737b",
light_grey = "#6f737b", light_grey = "#6f737b",
red = "#e06c75", red = "#e06c75",
baby_pink = "#DE8C92", baby_pink = "#DE8C92",
pink = "#ff75a0", pink = "#ff75a0",
line = "#31353d", -- for lines like vertsplit line = "#31353d", -- for lines like vertsplit
green = "#98c379", green = "#98c379",
vibrant_green = "#7eca9c", vibrant_green = "#7eca9c",
nord_blue = "#81A1C1", nord_blue = "#81A1C1",
blue = "#61afef", blue = "#61afef",
yellow = "#e7c787", yellow = "#e7c787",
sun = "#EBCB8B", sun = "#EBCB8B",
purple = "#de98fd", purple = "#de98fd",
dark_purple = "#c882e7", dark_purple = "#c882e7",
teal = "#519ABA", teal = "#519ABA",
orange = "#fca2aa", orange = "#fca2aa",
cyan = "#a3b8ef", cyan = "#a3b8ef",
statusline_bg = "#22262e", statusline_bg = "#22262e",
lightbg = "#2d3139", lightbg = "#2d3139",
pmenu_bg = "#61afef", pmenu_bg = "#61afef",
folder_bg = "#61afef", folder_bg = "#61afef",
} }
M.base_16 = { M.base_16 = {
base00 = "#1e222a", base00 = "#1e222a",
base01 = "#353b45", base01 = "#353b45",
base02 = "#3e4451", base02 = "#3e4451",
base03 = "#545862", base03 = "#545862",
base04 = "#565c64", base04 = "#565c64",
base05 = "#abb2bf", base05 = "#abb2bf",
base06 = "#b6bdca", base06 = "#b6bdca",
base07 = "#c8ccd4", base07 = "#c8ccd4",
base08 = "#e06c75", base08 = "#e06c75",
base09 = "#d19a66", base09 = "#d19a66",
base0A = "#e5c07b", base0A = "#e5c07b",
base0B = "#98c379", base0B = "#98c379",
base0C = "#56b6c2", base0C = "#56b6c2",
base0D = "#61afef", base0D = "#61afef",
base0E = "#c678dd", base0E = "#c678dd",
base0F = "#be5046", base0F = "#be5046",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#D8DEE9", white = "#D8DEE9",
darker_black = "#252b37", darker_black = "#252b37",
black = "#2a303c", -- nvim bg black = "#2a303c", -- nvim bg
black2 = "#2f3541", black2 = "#2f3541",
one_bg = "#343a46", one_bg = "#343a46",
one_bg2 = "#3e4450", one_bg2 = "#3e4450",
one_bg3 = "#484e5a", one_bg3 = "#484e5a",
grey = "#4d535f", grey = "#4d535f",
grey_fg = "#545a66", grey_fg = "#545a66",
grey_fg2 = "#595f6b", grey_fg2 = "#595f6b",
light_grey = "#606672", light_grey = "#606672",
red = "#d57780", red = "#d57780",
baby_pink = "#de878f", baby_pink = "#de878f",
pink = "#da838b", pink = "#da838b",
line = "#414753", -- for lines like vertsplit line = "#414753", -- for lines like vertsplit
green = "#A3BE8C", green = "#A3BE8C",
vibrant_green = "#afca98", vibrant_green = "#afca98",
blue = "#7797b7", blue = "#7797b7",
nord_blue = "#81A1C1", nord_blue = "#81A1C1",
yellow = "#EBCB8B", yellow = "#EBCB8B",
sun = "#e1c181", sun = "#e1c181",
purple = "#aab1be", purple = "#aab1be",
dark_purple = "#B48EAD", dark_purple = "#B48EAD",
teal = "#6484a4", teal = "#6484a4",
orange = "#e39a83", orange = "#e39a83",
cyan = "#9aafe6", cyan = "#9aafe6",
statusline_bg = "#333945", statusline_bg = "#333945",
lightbg = "#3f4551", lightbg = "#3f4551",
pmenu_bg = "#A3BE8C", pmenu_bg = "#A3BE8C",
folder_bg = "#7797b7", folder_bg = "#7797b7",
} }
M.base_16 = { M.base_16 = {
base00 = "#2a303c", base00 = "#2a303c",
base01 = "#3B4252", base01 = "#3B4252",
base02 = "#434C5E", base02 = "#434C5E",
base03 = "#4C566A", base03 = "#4C566A",
base04 = "#566074", base04 = "#566074",
base05 = "#bfc5d0", base05 = "#bfc5d0",
base06 = "#c7cdd8", base06 = "#c7cdd8",
base07 = "#ced4df", base07 = "#ced4df",
base08 = "#d57780", base08 = "#d57780",
base09 = "#e39a83", base09 = "#e39a83",
base0A = "#EBCB8B", base0A = "#EBCB8B",
base0B = "#A3BE8C", base0B = "#A3BE8C",
base0C = "#97b7d7", base0C = "#97b7d7",
base0D = "#81A1C1", base0D = "#81A1C1",
base0E = "#B48EAD", base0E = "#B48EAD",
base0F = "#d57780", base0F = "#d57780",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,66 +1,66 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#2a303c", white = "#2a303c",
darker_black = "#ced4df", darker_black = "#ced4df",
black = "#D8DEE9", -- nvim bg black = "#D8DEE9", -- nvim bg
black2 = "#c9cfda", black2 = "#c9cfda",
one_bg = "#c7cdd8", -- real bg of onedark one_bg = "#c7cdd8", -- real bg of onedark
one_bg2 = "#bdc3ce", one_bg2 = "#bdc3ce",
one_bg3 = "#b3b9c4", one_bg3 = "#b3b9c4",
grey = "#a9afba", grey = "#a9afba",
grey_fg = "#9fa5b0", grey_fg = "#9fa5b0",
grey_fg2 = "#959ba6", grey_fg2 = "#959ba6",
light_grey = "#8b919c", light_grey = "#8b919c",
red = "#a3454e", red = "#a3454e",
baby_pink = "#ae5059", baby_pink = "#ae5059",
pink = "#c56770", pink = "#c56770",
line = "#acb2bd", -- for lines like vertsplit line = "#acb2bd", -- for lines like vertsplit
green = "#75905e", green = "#75905e",
vibrant_green = "#809b69", vibrant_green = "#809b69",
nord_blue = "#5b7b9b", nord_blue = "#5b7b9b",
blue = "#3f5f7f", blue = "#3f5f7f",
yellow = "#c18401", yellow = "#c18401",
sun = "#dea95f", sun = "#dea95f",
purple = "#9c87c7", purple = "#9c87c7",
dark_purple = "#927dbd", dark_purple = "#927dbd",
teal = "#395979", teal = "#395979",
orange = "#b46b54", orange = "#b46b54",
cyan = "#6181a1", cyan = "#6181a1",
statusline_bg = "#ced4df", statusline_bg = "#ced4df",
lightbg = "#bac0cb", lightbg = "#bac0cb",
pmenu_bg = "#7191b1", pmenu_bg = "#7191b1",
folder_bg = "#616773", folder_bg = "#616773",
} }
M.base_16 = { M.base_16 = {
base00 = "#D8DEE9", base00 = "#D8DEE9",
base01 = "#f4f4f4", base01 = "#f4f4f4",
base02 = "#e5e5e6", base02 = "#e5e5e6",
base03 = "#dfdfe0", base03 = "#dfdfe0",
base04 = "#d7d7d8", base04 = "#d7d7d8",
base05 = "#3e4450", base05 = "#3e4450",
base06 = "#272d39", base06 = "#272d39",
base07 = "#2a303c", base07 = "#2a303c",
base08 = "#a3454e", base08 = "#a3454e",
base09 = "#b46b54", base09 = "#b46b54",
base0A = "#b88339", base0A = "#b88339",
base0B = "#75905e", base0B = "#75905e",
base0C = "#5b7b9b", base0C = "#5b7b9b",
base0D = "#3f5f7f", base0D = "#3f5f7f",
base0E = "#8d6786", base0E = "#8d6786",
base0F = "#a3454e", base0F = "#a3454e",
} }
M.polish_hl = { M.polish_hl = {
WhichKeyDesc = { fg = M.base_30.white }, WhichKeyDesc = { fg = M.base_30.white },
WhichKey = { fg = M.base_30.white }, WhichKey = { fg = M.base_30.white },
TelescopePromptPrefix = { fg = M.base_30.white }, TelescopePromptPrefix = { fg = M.base_30.white },
TelescopeSelection = { bg = M.base_30.one_bg, fg = M.base_30.white }, TelescopeSelection = { bg = M.base_30.one_bg, fg = M.base_30.white },
TSPunctBracket = { fg = M.base_30.nord_blue }, TSPunctBracket = { fg = M.base_30.nord_blue },
FloatBorder = { fg = M.base_16.base05 }, FloatBorder = { fg = M.base_16.base05 },
DiffAdd = { fg = M.base_16.base05 }, DiffAdd = { fg = M.base_16.base05 },
St_pos_text = { fg = M.base_30.white }, St_pos_text = { fg = M.base_30.white },
} }
M = require("base46").override_theme(M, "onenord_light") M = require("base46").override_theme(M, "onenord_light")

@ -1,60 +1,60 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#ffffff", -- custom white = "#ffffff", -- custom
darker_black = "#232738", darker_black = "#232738",
black = "#292D3E", -- nvim bg black = "#292D3E", -- nvim bg
black2 = "#2f3344", black2 = "#2f3344",
one_bg = "#333748", one_bg = "#333748",
one_bg2 = "#3c4051", one_bg2 = "#3c4051",
one_bg3 = "#444859", one_bg3 = "#444859",
grey = "#515566", grey = "#515566",
grey_fg = "#5b5f70", grey_fg = "#5b5f70",
grey_fg2 = "#65697a", grey_fg2 = "#65697a",
light_grey = "#6d7182", light_grey = "#6d7182",
red = "#f07178", red = "#f07178",
baby_pink = "#606475", baby_pink = "#606475",
pink = "#ff5370", -- base16 pink = "#ff5370", -- base16
line = "#3f4354", -- for lines like vertsplit line = "#3f4354", -- for lines like vertsplit
green = "#c3e88d", --base16 green = "#c3e88d", --base16
vibrant_green = "#96e88d", -- custom vibrant_green = "#96e88d", -- custom
nord_blue = "#8fb7ff", nord_blue = "#8fb7ff",
blue = "#82aaff", -- base16 blue = "#82aaff", -- base16
yellow = "#ffcb6b", -- base16 yellow = "#ffcb6b", -- base16
sun = "#ffd373", sun = "#ffd373",
purple = "#c792ea", -- base16 purple = "#c792ea", -- base16
dark_purple = "#b383d2", --custom dark_purple = "#b383d2", --custom
teal = "#89ffe6", -- custom teal = "#89ffe6", -- custom
orange = "#ffa282", -- base16 orange = "#ffa282", -- base16
cyan = "#89ddff", -- base16 cyan = "#89ddff", -- base16
statusline_bg = "#2d3142", statusline_bg = "#2d3142",
lightbg = "#3c4051", lightbg = "#3c4051",
pmenu_bg = "#82aaff", -- custom pmenu_bg = "#82aaff", -- custom
folder_bg = "#82aaff", folder_bg = "#82aaff",
} }
M.base_16 = { M.base_16 = {
base00 = "#292d3e", base00 = "#292d3e",
base01 = "#444267", base01 = "#444267",
base02 = "#32374d", base02 = "#32374d",
base03 = "#676e95", base03 = "#676e95",
base04 = "#8796b0", base04 = "#8796b0",
base05 = "#d3d3d3", base05 = "#d3d3d3",
base06 = "#efefef", base06 = "#efefef",
base07 = "#ffffff", base07 = "#ffffff",
base08 = "#f07178", base08 = "#f07178",
base09 = "#ffa282", base09 = "#ffa282",
base0A = "#ffcb6b", base0A = "#ffcb6b",
base0B = "#c3e88d", base0B = "#c3e88d",
base0C = "#89ddff", base0C = "#89ddff",
base0D = "#82aaff", base0D = "#82aaff",
base0E = "#c792ea", base0E = "#c792ea",
base0F = "#ff5370", base0F = "#ff5370",
} }
M.polish_hl = { M.polish_hl = {
TSInclude = { fg = M.base_30.purple }, TSInclude = { fg = M.base_30.purple },
TSFieldKey = { fg = M.base_30.orange }, TSFieldKey = { fg = M.base_30.orange },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#b5bcc9", white = "#b5bcc9",
darker_black = "#10171e", darker_black = "#10171e",
black = "#131a21", -- nvim bg black = "#131a21", -- nvim bg
black2 = "#1a2128", black2 = "#1a2128",
one_bg = "#1e252c", one_bg = "#1e252c",
one_bg2 = "#2a3138", one_bg2 = "#2a3138",
one_bg3 = "#363d44", one_bg3 = "#363d44",
grey = "#363d44", grey = "#363d44",
grey_fg = "#4e555c", grey_fg = "#4e555c",
grey_fg2 = "#51585f", grey_fg2 = "#51585f",
light_grey = "#545b62", light_grey = "#545b62",
red = "#ef8891", red = "#ef8891",
baby_pink = "#fca2aa", baby_pink = "#fca2aa",
pink = "#fca2af", pink = "#fca2af",
line = "#272e35", -- for lines like vertsplit line = "#272e35", -- for lines like vertsplit
green = "#9fe8c3", green = "#9fe8c3",
vibrant_green = "#9ce5c0", vibrant_green = "#9ce5c0",
blue = "#99aee5", blue = "#99aee5",
nord_blue = "#9aa8cf", nord_blue = "#9aa8cf",
yellow = "#fbdf90", yellow = "#fbdf90",
sun = "#fbdf9a", sun = "#fbdf9a",
purple = "#c2a2e3", purple = "#c2a2e3",
dark_purple = "#b696d7", dark_purple = "#b696d7",
teal = "#92dbb6", teal = "#92dbb6",
orange = "#EDA685", orange = "#EDA685",
cyan = "#b5c3ea", cyan = "#b5c3ea",
statusline_bg = "#181f26", statusline_bg = "#181f26",
lightbg = "#222930", lightbg = "#222930",
pmenu_bg = "#ef8891", pmenu_bg = "#ef8891",
folder_bg = "#99aee5", folder_bg = "#99aee5",
} }
M.base_16 = { M.base_16 = {
base0A = "#f5d595", base0A = "#f5d595",
base04 = "#4f565d", base04 = "#4f565d",
base07 = "#b5bcc9", base07 = "#b5bcc9",
base05 = "#ced4df", base05 = "#ced4df",
base0E = "#c2a2e3", base0E = "#c2a2e3",
base0D = "#a3b8ef", base0D = "#a3b8ef",
base0C = "#abb9e0", base0C = "#abb9e0",
base0B = "#9ce5c0", base0B = "#9ce5c0",
base02 = "#31383f", base02 = "#31383f",
base0F = "#e88e9b", base0F = "#e88e9b",
base03 = "#40474e", base03 = "#40474e",
base08 = "#ef8891", base08 = "#ef8891",
base01 = "#2c333a", base01 = "#2c333a",
base00 = "#131a21", base00 = "#131a21",
base09 = "#EDA685", base09 = "#EDA685",
base06 = "#d3d9e4", base06 = "#d3d9e4",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,60 +1,60 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#d4d4d5", white = "#d4d4d5",
darker_black = "#0a0d11", darker_black = "#0a0d11",
black = "#101317", -- nvim bg black = "#101317", -- nvim bg
black2 = "#191d22", black2 = "#191d22",
one_bg = "#212428", one_bg = "#212428",
one_bg2 = "#292c30", one_bg2 = "#292c30",
one_bg3 = "#33363a", one_bg3 = "#33363a",
grey = "#3e4145", grey = "#3e4145",
grey_fg = "#45484c", grey_fg = "#45484c",
grey_fg2 = "#4a4d51", grey_fg2 = "#4a4d51",
light_grey = "#525559", light_grey = "#525559",
red = "#f87070", red = "#f87070",
baby_pink = "#ff8e8e", baby_pink = "#ff8e8e",
pink = "#ffa7a7", pink = "#ffa7a7",
line = "#30303a", -- for lines like vertsplit line = "#30303a", -- for lines like vertsplit
green = "#37d99e", green = "#37d99e",
vibrant_green = "#79dcaa", vibrant_green = "#79dcaa",
blue = "#7ab0df", blue = "#7ab0df",
nord_blue = "#87bdec", nord_blue = "#87bdec",
yellow = "#ffe59e", yellow = "#ffe59e",
sun = "#ffeda6", sun = "#ffeda6",
purple = "#c397d8", purple = "#c397d8",
dark_purple = "#b68acb", dark_purple = "#b68acb",
teal = "#63b3ad", teal = "#63b3ad",
orange = "#f0a988", orange = "#f0a988",
cyan = "#50cad2", cyan = "#50cad2",
statusline_bg = "#15191e", statusline_bg = "#15191e",
lightbg = "#24282d", lightbg = "#24282d",
pmenu_bg = "#3bdda2", pmenu_bg = "#3bdda2",
folder_bg = "#5fb0fc", folder_bg = "#5fb0fc",
} }
M.base_16 = { M.base_16 = {
base00 = "#101317", base00 = "#101317",
base01 = "#1a1d21", base01 = "#1a1d21",
base02 = "#23262a", base02 = "#23262a",
base03 = "#2b2e32", base03 = "#2b2e32",
base04 = "#323539", base04 = "#323539",
base05 = "#c5c5c6", base05 = "#c5c5c6",
base06 = "#cbcbcc", base06 = "#cbcbcc",
base07 = "#d4d4d5", base07 = "#d4d4d5",
base08 = "#37d99e", base08 = "#37d99e",
base09 = "#f0a988", base09 = "#f0a988",
base0A = "#e5d487", base0A = "#e5d487",
base0B = "#e87979", base0B = "#e87979",
base0C = "#37d99e", base0C = "#37d99e",
base0D = "#5fb0fc", base0D = "#5fb0fc",
base0E = "#c397d8", base0E = "#c397d8",
base0F = "#e87979", base0F = "#e87979",
} }
M.polish_hl = { M.polish_hl = {
TSPunctBracket = { fg = M.base_16.base07 }, TSPunctBracket = { fg = M.base_16.base07 },
TSParenthesis = { link = "TSPunctBracket" }, TSParenthesis = { link = "TSPunctBracket" },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
black = "#191724", -- nvim bg black = "#191724", -- nvim bg
darker_black = "#13111e", darker_black = "#13111e",
white = "#e0def4", white = "#e0def4",
black2 = "#1f1d2a", black2 = "#1f1d2a",
one_bg = "#262431", -- real bg of onedark one_bg = "#262431", -- real bg of onedark
one_bg2 = "#2d2b38", one_bg2 = "#2d2b38",
one_bg3 = "#353340", one_bg3 = "#353340",
grey = "#3f3d4a", grey = "#3f3d4a",
grey_fg = "#474552", grey_fg = "#474552",
grey_fg2 = "#514f5c", grey_fg2 = "#514f5c",
light_grey = "#5d5b68", light_grey = "#5d5b68",
red = "#eb6f92", red = "#eb6f92",
baby_pink = "#f5799c", baby_pink = "#f5799c",
pink = "#ff83a6", pink = "#ff83a6",
line = "#2e2c39", -- for lines like vertsplit line = "#2e2c39", -- for lines like vertsplit
green = "#ABE9B3", green = "#ABE9B3",
vibrant_green = "#b5f3bd", vibrant_green = "#b5f3bd",
nord_blue = "#86b9c2", nord_blue = "#86b9c2",
blue = "#8bbec7", blue = "#8bbec7",
yellow = "#f6c177", yellow = "#f6c177",
sun = "#fec97f", sun = "#fec97f",
purple = "#c4a7e7", purple = "#c4a7e7",
dark_purple = "#bb9ede", dark_purple = "#bb9ede",
teal = "#6aadc8", teal = "#6aadc8",
orange = "#f6c177", orange = "#f6c177",
cyan = "#a3d6df", cyan = "#a3d6df",
statusline_bg = "#201e2b", statusline_bg = "#201e2b",
lightbg = "#2d2b38", lightbg = "#2d2b38",
pmenu_bg = "#c4a7e7", pmenu_bg = "#c4a7e7",
folder_bg = "#6aadc8", folder_bg = "#6aadc8",
} }
M.base_16 = { M.base_16 = {
base00 = "#191724", base00 = "#191724",
base01 = "#1f1d2e", base01 = "#1f1d2e",
base02 = "#403d52", base02 = "#403d52",
base03 = "#6e6a86", base03 = "#6e6a86",
base04 = "#908caa", base04 = "#908caa",
base05 = "#e0def4", base05 = "#e0def4",
base06 = "#cecacd", base06 = "#cecacd",
base07 = "#fffaf3", base07 = "#fffaf3",
base08 = "#e2e1e7", base08 = "#e2e1e7",
base09 = "#eb6f92", base09 = "#eb6f92",
base0A = "#f6c177", base0A = "#f6c177",
base0B = "#ebbcba", base0B = "#ebbcba",
base0C = "#4d90ab", base0C = "#4d90ab",
base0D = "#93c6cf", base0D = "#93c6cf",
base0E = "#c4a7e7", base0E = "#c4a7e7",
base0F = "#e5e5e5", base0F = "#e5e5e5",
} }
M = require("base46").override_theme(M, "rosepine") M = require("base46").override_theme(M, "rosepine")

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#D9D7D6", white = "#D9D7D6",
darker_black = "#000a0e", darker_black = "#000a0e",
black = "#061115", -- nvim bg black = "#061115", -- nvim bg
black2 = "#0d181c", black2 = "#0d181c",
one_bg = "#131e22", one_bg = "#131e22",
one_bg2 = "#1c272b", one_bg2 = "#1c272b",
one_bg3 = "#242f33", one_bg3 = "#242f33",
grey = "#313c40", grey = "#313c40",
grey_fg = "#3b464a", grey_fg = "#3b464a",
grey_fg2 = "#455054", grey_fg2 = "#455054",
light_grey = "#4f5a5e", light_grey = "#4f5a5e",
red = "#DF5B61", red = "#DF5B61",
baby_pink = "#EE6A70", baby_pink = "#EE6A70",
pink = "#F16269", pink = "#F16269",
line = "#222d31", -- for lines like vertsplit line = "#222d31", -- for lines like vertsplit
green = "#78B892", green = "#78B892",
vibrant_green = "#8CD7AA", vibrant_green = "#8CD7AA",
nord_blue = "#5A84BC", nord_blue = "#5A84BC",
blue = "#6791C9", blue = "#6791C9",
yellow = "#ecd28b", yellow = "#ecd28b",
sun = "#f6dc95", sun = "#f6dc95",
purple = "#C488EC", purple = "#C488EC",
dark_purple = "#BC83E3", dark_purple = "#BC83E3",
teal = "#7ACFE4", teal = "#7ACFE4",
orange = "#E89982", orange = "#E89982",
cyan = "#67AFC1", cyan = "#67AFC1",
statusline_bg = "#0A1519", statusline_bg = "#0A1519",
lightbg = "#1a2529", lightbg = "#1a2529",
pmenu_bg = "#78B892", pmenu_bg = "#78B892",
folder_bg = "#6791C9", folder_bg = "#6791C9",
} }
M.base_16 = { M.base_16 = {
base00 = "#061115", base00 = "#061115",
base01 = "#0C171B", base01 = "#0C171B",
base02 = "#101B1F", base02 = "#101B1F",
base03 = "#192428", base03 = "#192428",
base04 = "#212C30", base04 = "#212C30",
base05 = "#D9D7D6", base05 = "#D9D7D6",
base06 = "#E3E1E0", base06 = "#E3E1E0",
base07 = "#EDEBEA", base07 = "#EDEBEA",
base08 = "#f26e74", base08 = "#f26e74",
base09 = "#ecd28b", base09 = "#ecd28b",
base0A = "#E9967E", base0A = "#E9967E",
base0B = "#82c29c", base0B = "#82c29c",
base0C = "#6791C9", base0C = "#6791C9",
base0D = "#79AAEB", base0D = "#79AAEB",
base0E = "#C488EC", base0E = "#C488EC",
base0F = "#F16269", base0F = "#F16269",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#FFDEDE", white = "#FFDEDE",
darker_black = "#161a1e", darker_black = "#161a1e",
black = "#1B1F23", -- nvim bg black = "#1B1F23", -- nvim bg
black2 = "#22262a", black2 = "#22262a",
one_bg = "#25292d", -- real bg of onedark one_bg = "#25292d", -- real bg of onedark
one_bg2 = "#2f3337", one_bg2 = "#2f3337",
one_bg3 = "#393d41", one_bg3 = "#393d41",
grey = "#43474b", grey = "#43474b",
grey_fg = "#4b4f53", grey_fg = "#4b4f53",
grey_fg2 = "#54585c", grey_fg2 = "#54585c",
light_grey = "#5d6165", light_grey = "#5d6165",
red = "#e5a3a1", red = "#e5a3a1",
baby_pink = "#FFC0EB", baby_pink = "#FFC0EB",
pink = "#F8B3CC", pink = "#F8B3CC",
line = "#343A40", -- for lines like vertsplit line = "#343A40", -- for lines like vertsplit
green = "#B4E3AD", green = "#B4E3AD",
vibrant_green = "#9EDABE", vibrant_green = "#9EDABE",
nord_blue = "#B0CEEF", nord_blue = "#B0CEEF",
blue = "#A3CBE7", -- # blue = "#A3CBE7", -- #
yellow = "#ECE3B1", yellow = "#ECE3B1",
sun = "#E7DA84", sun = "#E7DA84",
purple = "#CEACE8", purple = "#CEACE8",
dark_purple = "#B1A8FB", dark_purple = "#B1A8FB",
teal = "#94D2CF", teal = "#94D2CF",
orange = "#F1C192", orange = "#F1C192",
cyan = "#C9D4FF", cyan = "#C9D4FF",
statusline_bg = "#22262a", statusline_bg = "#22262a",
lightbg = "#2f3337", lightbg = "#2f3337",
pmenu_bg = "#F8B3CC", pmenu_bg = "#F8B3CC",
folder_bg = "#A3CBE7", folder_bg = "#A3CBE7",
} }
M.base_16 = { M.base_16 = {
base00 = "#1B1F23", base00 = "#1B1F23",
base01 = "#25292d", base01 = "#25292d",
base02 = "#2f3337", base02 = "#2f3337",
base03 = "#393d41", base03 = "#393d41",
base04 = "#43474b", base04 = "#43474b",
base05 = "#FDE5E6", base05 = "#FDE5E6",
base06 = "#DEE2E6", base06 = "#DEE2E6",
base07 = "#F8F9FA", base07 = "#F8F9FA",
base08 = "#e5a3a1", base08 = "#e5a3a1",
base09 = "#F1C192", base09 = "#F1C192",
base0A = "#ECE3B1", base0A = "#ECE3B1",
base0B = "#B4E3AD", base0B = "#B4E3AD",
base0C = "#F8B3CC", base0C = "#F8B3CC",
base0D = "#A3CBE7", base0D = "#A3CBE7",
base0E = "#CEACE8", base0E = "#CEACE8",
base0F = "#e5a3a1", base0F = "#e5a3a1",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,55 +1,55 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#A0A8CD", white = "#A0A8CD",
darker_black = "#0c0d18", darker_black = "#0c0d18",
black = "#11121D", -- nvim bg black = "#11121D", -- nvim bg
black2 = "#171823", black2 = "#171823",
one_bg = "#1d1e29", one_bg = "#1d1e29",
one_bg2 = "#252631", one_bg2 = "#252631",
one_bg3 = "#252631", one_bg3 = "#252631",
grey = "#40414c", grey = "#40414c",
grey_fg = "#474853", grey_fg = "#474853",
grey_fg2 = "#4e4f5a", grey_fg2 = "#4e4f5a",
light_grey = "#545560", light_grey = "#545560",
red = "#ee6d85", red = "#ee6d85",
baby_pink = "#fd7c94", baby_pink = "#fd7c94",
pink = "#fe6D85", pink = "#fe6D85",
line = "#191a25", line = "#191a25",
green = "#98c379", green = "#98c379",
vibrant_green = "#95c561", vibrant_green = "#95c561",
nord_blue = "#648ce1", nord_blue = "#648ce1",
blue = "#7199ee", blue = "#7199ee",
yellow = "#d7a65f", yellow = "#d7a65f",
sun = "#dfae67", sun = "#dfae67",
purple = "#a485dd", purple = "#a485dd",
dark_purple = "#9071c9", dark_purple = "#9071c9",
teal = "#519aba", teal = "#519aba",
orange = "#f6955b", orange = "#f6955b",
cyan = "#38a89d", cyan = "#38a89d",
statusline_bg = "#161722", statusline_bg = "#161722",
lightbg = "#2a2b36", lightbg = "#2a2b36",
pmenu_bg = "#ee6d85", pmenu_bg = "#ee6d85",
folder_bg = "#7199ee", folder_bg = "#7199ee",
} }
M.base_16 = { M.base_16 = {
base00 = "#11121d", base00 = "#11121d",
base01 = "#1b1c27", base01 = "#1b1c27",
base02 = "#21222d", base02 = "#21222d",
base03 = "#282934", base03 = "#282934",
base04 = "#30313c", base04 = "#30313c",
base05 = "#abb2bf", base05 = "#abb2bf",
base06 = "#b2b9c6", base06 = "#b2b9c6",
base07 = "#A0A8CD", base07 = "#A0A8CD",
base08 = "#ee6d85", base08 = "#ee6d85",
base09 = "#7199ee", base09 = "#7199ee",
base0A = "#7199ee", base0A = "#7199ee",
base0B = "#dfae67", base0B = "#dfae67",
base0C = "#a485dd", base0C = "#a485dd",
base0D = "#95c561", base0D = "#95c561",
base0E = "#a485dd", base0E = "#a485dd",
base0F = "#f3627a", base0F = "#f3627a",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,61 +1,61 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#c0caf5", white = "#c0caf5",
darker_black = "#16161e", darker_black = "#16161e",
black = "#1a1b26", -- nvim bg black = "#1a1b26", -- nvim bg
black2 = "#1f2336", black2 = "#1f2336",
one_bg = "#24283b", one_bg = "#24283b",
one_bg2 = "#414868", one_bg2 = "#414868",
one_bg3 = "#353b45", one_bg3 = "#353b45",
grey = "#40486a", grey = "#40486a",
grey_fg = "#565f89", grey_fg = "#565f89",
grey_fg2 = "#4f5779", grey_fg2 = "#4f5779",
light_grey = "#545c7e", light_grey = "#545c7e",
red = "#f7768e", red = "#f7768e",
baby_pink = "#DE8C92", baby_pink = "#DE8C92",
pink = "#ff75a0", pink = "#ff75a0",
line = "#32333e", -- for lines like vertsplit line = "#32333e", -- for lines like vertsplit
green = "#9ece6a", green = "#9ece6a",
vibrant_green = "#73daca", vibrant_green = "#73daca",
nord_blue = "#80a8fd", nord_blue = "#80a8fd",
blue = "#7aa2f7", blue = "#7aa2f7",
yellow = "#e0af68", yellow = "#e0af68",
sun = "#EBCB8B", sun = "#EBCB8B",
purple = "#bb9af7", purple = "#bb9af7",
dark_purple = "#9d7cd8", dark_purple = "#9d7cd8",
teal = "#1abc9c", teal = "#1abc9c",
orange = "#ff9e64", orange = "#ff9e64",
cyan = "#7dcfff", cyan = "#7dcfff",
statusline_bg = "#1d1e29", statusline_bg = "#1d1e29",
lightbg = "#32333e", lightbg = "#32333e",
pmenu_bg = "#7aa2f7", pmenu_bg = "#7aa2f7",
folder_bg = "#7aa2f7", folder_bg = "#7aa2f7",
} }
M.base_16 = { M.base_16 = {
base00 = "#1A1B26", base00 = "#1A1B26",
base01 = "#3b4261", base01 = "#3b4261",
base02 = "#3b4261", base02 = "#3b4261",
base03 = "#545c7e", base03 = "#545c7e",
base04 = "#565c64", base04 = "#565c64",
base05 = "#a9b1d6", base05 = "#a9b1d6",
base06 = "#bbc5f0", base06 = "#bbc5f0",
base07 = "#c0caf5", base07 = "#c0caf5",
base08 = "#f7768e", base08 = "#f7768e",
base09 = "#ff9e64", base09 = "#ff9e64",
base0A = "#ffd089", base0A = "#ffd089",
base0B = "#9ece6a", base0B = "#9ece6a",
base0C = "#2ac3de", base0C = "#2ac3de",
base0D = "#7aa2f7", base0D = "#7aa2f7",
base0E = "#bb9af7", base0E = "#bb9af7",
base0F = "#c0caf5", base0F = "#c0caf5",
} }
M.polish_hl = { M.polish_hl = {
TSVariable = { fg = M.base_30.red }, TSVariable = { fg = M.base_30.red },
TSFuncBuiltin = { fg = M.base_30.cyan }, TSFuncBuiltin = { fg = M.base_30.cyan },
TSParameter = { fg = M.base_30.white }, TSParameter = { fg = M.base_30.white },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,61 +1,61 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#C5C8C2", white = "#C5C8C2",
darker_black = "#191b1d", darker_black = "#191b1d",
black = "#1d1f21", -- nvim bg black = "#1d1f21", -- nvim bg
black2 = "#232527", black2 = "#232527",
one_bg = "#2d2f31", one_bg = "#2d2f31",
one_bg2 = "#353b45", one_bg2 = "#353b45",
one_bg3 = "#30343c", one_bg3 = "#30343c",
grey = "#434547", grey = "#434547",
grey_fg = "#545B68", grey_fg = "#545B68",
grey_fg2 = "#616875", grey_fg2 = "#616875",
light_grey = "#676e7b", light_grey = "#676e7b",
red = "#cc6666", red = "#cc6666",
baby_pink = "#FF6E79", baby_pink = "#FF6E79",
pink = "#ff9ca3", pink = "#ff9ca3",
line = "#313335", -- for lines like vertsplit line = "#313335", -- for lines like vertsplit
green = "#a4b595", green = "#a4b595",
vibrant_green = "#a3b991", vibrant_green = "#a3b991",
nord_blue = "#728da8", nord_blue = "#728da8",
blue = "#6f8dab", blue = "#6f8dab",
yellow = "#d7bd8d", yellow = "#d7bd8d",
sun = "#e4c180", sun = "#e4c180",
purple = "#b4bbc8", purple = "#b4bbc8",
dark_purple = "#b290ac", dark_purple = "#b290ac",
teal = "#8abdb6", teal = "#8abdb6",
orange = "#DE935F", orange = "#DE935F",
cyan = "#70c0b1", cyan = "#70c0b1",
statusline_bg = "#212326", statusline_bg = "#212326",
lightbg = "#373B41", lightbg = "#373B41",
pmenu_bg = "#a4b595", pmenu_bg = "#a4b595",
folder_bg = "#6f8dab", folder_bg = "#6f8dab",
} }
M.base_16 = { M.base_16 = {
base0A = "#f0c674", base0A = "#f0c674",
base04 = "#b4b7b4", base04 = "#b4b7b4",
base07 = "#ffffff", base07 = "#ffffff",
base05 = "#c5c8c6", base05 = "#c5c8c6",
base0E = "#b294bb", base0E = "#b294bb",
base0D = "#81a2be", base0D = "#81a2be",
base0C = "#8abeb7", base0C = "#8abeb7",
base0B = "#b5bd68", base0B = "#b5bd68",
base02 = "#373b41", base02 = "#373b41",
base0F = "#a3685a", base0F = "#a3685a",
base03 = "#969896", base03 = "#969896",
base08 = "#cc6666", base08 = "#cc6666",
base01 = "#282a2e", base01 = "#282a2e",
base00 = "#1d1f21", base00 = "#1d1f21",
base09 = "#de935f", base09 = "#de935f",
base06 = "#e0e0e0", base06 = "#e0e0e0",
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"
M.polish_hl = { M.polish_hl = {
PmenuSel = { fg = M.base_30.black, bg = M.base_30.red }, PmenuSel = { fg = M.base_30.black, bg = M.base_30.red },
} }
M = require("base46").override_theme(M, "tomorrow_night") M = require("base46").override_theme(M, "tomorrow_night")

@ -1,67 +1,67 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#dee1e6", white = "#dee1e6",
darker_black = "#1a1a1a", darker_black = "#1a1a1a",
black = "#1E1E1E", -- nvim bg black = "#1E1E1E", -- nvim bg
black2 = "#252525", black2 = "#252525",
one_bg = "#282828", one_bg = "#282828",
one_bg2 = "#313131", one_bg2 = "#313131",
one_bg3 = "#3a3a3a", one_bg3 = "#3a3a3a",
grey = "#444444", grey = "#444444",
grey_fg = "#4e4e4e", grey_fg = "#4e4e4e",
grey_fg2 = "#585858", grey_fg2 = "#585858",
light_grey = "#626262", light_grey = "#626262",
red = "#D16969", red = "#D16969",
baby_pink = "#ea696f", baby_pink = "#ea696f",
pink = "#bb7cb6", pink = "#bb7cb6",
line = "#2e2e2e", -- for lines like vertsplit line = "#2e2e2e", -- for lines like vertsplit
green = "#B5CEA8", green = "#B5CEA8",
green1 = "#4EC994", green1 = "#4EC994",
vibrant_green = "#bfd8b2", vibrant_green = "#bfd8b2",
blue = "#569CD6", blue = "#569CD6",
nord_blue = "#60a6e0", nord_blue = "#60a6e0",
yellow = "#D7BA7D", yellow = "#D7BA7D",
sun = "#e1c487", sun = "#e1c487",
purple = "#c68aee", purple = "#c68aee",
dark_purple = "#b77bdf", dark_purple = "#b77bdf",
teal = "#4294D6", teal = "#4294D6",
orange = "#d3967d", orange = "#d3967d",
cyan = "#9CDCFE", cyan = "#9CDCFE",
statusline_bg = "#242424", statusline_bg = "#242424",
lightbg = "#303030", lightbg = "#303030",
pmenu_bg = "#60a6e0", pmenu_bg = "#60a6e0",
folder_bg = "#7A8A92", folder_bg = "#7A8A92",
} }
M.base_16 = { M.base_16 = {
--author of this template Tomas Iser, @tomasiser on github, --author of this template Tomas Iser, @tomasiser on github,
base00 = "#1E1E1E", base00 = "#1E1E1E",
base01 = "#262626", base01 = "#262626",
base02 = "#303030", base02 = "#303030",
base03 = "#3C3C3C", base03 = "#3C3C3C",
base04 = "#464646", base04 = "#464646",
base05 = "#D4D4D4", base05 = "#D4D4D4",
base06 = "#E9E9E9", base06 = "#E9E9E9",
base07 = "#FFFFFF", base07 = "#FFFFFF",
base08 = "#D16969", base08 = "#D16969",
base09 = "#B5CEA8", base09 = "#B5CEA8",
base0A = "#D7BA7D", base0A = "#D7BA7D",
base0B = "#BD8D78", base0B = "#BD8D78",
base0C = "#9CDCFE", base0C = "#9CDCFE",
base0D = "#DCDCAA", base0D = "#DCDCAA",
base0E = "#C586C0", base0E = "#C586C0",
base0F = "#E9E9E9", base0F = "#E9E9E9",
} }
M.polish_hl = { M.polish_hl = {
TSParameter = { fg = M.base_30.blue }, TSParameter = { fg = M.base_30.blue },
TSKeyword = { fg = M.base_30.blue }, TSKeyword = { fg = M.base_30.blue },
TSVariable = { fg = M.base_30.cyan }, TSVariable = { fg = M.base_30.cyan },
luaTSField = { fg = M.base_30.teal }, luaTSField = { fg = M.base_30.teal },
TSFieldKey = { fg = M.base_30.green1 }, TSFieldKey = { fg = M.base_30.green1 },
TSKeywordReturn = { fg = M.base_16.base0E }, TSKeywordReturn = { fg = M.base_16.base0E },
TSKeywordFunction = { fg = M.base_30.teal }, TSKeywordFunction = { fg = M.base_30.teal },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

@ -1,62 +1,62 @@
local M = {} local M = {}
M.base_30 = { M.base_30 = {
white = "#e4e0d7", white = "#e4e0d7",
darker_black = "#1b1b1b", darker_black = "#1b1b1b",
black = "#222222", black = "#222222",
black2 = "#292929", black2 = "#292929",
one_bg = "#333333", one_bg = "#333333",
one_bg2 = "#3a3a3a", one_bg2 = "#3a3a3a",
one_bg3 = "#414141", one_bg3 = "#414141",
grey = "#4b4b4b", grey = "#4b4b4b",
grey_fg = "#535353", grey_fg = "#535353",
grey_fg2 = "#5a5a5a", grey_fg2 = "#5a5a5a",
light_grey = "#646464", light_grey = "#646464",
red = "#FF8F7E", red = "#FF8F7E",
baby_pink = "#f58eff", baby_pink = "#f58eff",
pink = "#e780f8", pink = "#e780f8",
line = "#353535", line = "#353535",
green = "#AEE474", green = "#AEE474",
vibrant_green = "#95e454", vibrant_green = "#95e454",
nord_blue = "#8dbdfb", nord_blue = "#8dbdfb",
blue = "#88B8F6", blue = "#88B8F6",
yellow = "#efdeab", yellow = "#efdeab",
sun = "#feedba", sun = "#feedba",
purple = "#dc8cff", purple = "#dc8cff",
dark_purple = "#c878f0", dark_purple = "#c878f0",
teal = "#7EB6BC", teal = "#7EB6BC",
orange = "#FFCC66", orange = "#FFCC66",
cyan = "#90fdf8", cyan = "#90fdf8",
statusline_bg = "#262626", statusline_bg = "#262626",
lightbg = "#3c3c3c", lightbg = "#3c3c3c",
pmenu_bg = "#95e454", pmenu_bg = "#95e454",
folder_bg = "#7BB0C9", folder_bg = "#7BB0C9",
} }
M.base_16 = { M.base_16 = {
base00 = "#202020", base00 = "#202020",
base01 = "#303030", base01 = "#303030",
base02 = "#373737", base02 = "#373737",
base03 = "#3e3e3e", base03 = "#3e3e3e",
base04 = "#484848", base04 = "#484848",
base05 = "#d6d2c9", base05 = "#d6d2c9",
base06 = "#ddd9d0", base06 = "#ddd9d0",
base07 = "#e4e0d7", base07 = "#e4e0d7",
base08 = "#FF8F7E", base08 = "#FF8F7E",
base09 = "#FFCC66", base09 = "#FFCC66",
base0A = "#efdeab", base0A = "#efdeab",
base0B = "#AEE474", base0B = "#AEE474",
base0C = "#7EB6BC", base0C = "#7EB6BC",
base0D = "#88B8F6", base0D = "#88B8F6",
base0E = "#dc8cff", base0E = "#dc8cff",
base0F = "#dc8c64", base0F = "#dc8c64",
} }
M.polish_hl = { M.polish_hl = {
TSInclude = { fg = M.base_30.red }, TSInclude = { fg = M.base_30.red },
TSConstructor = { fg = M.base_30.orange }, TSConstructor = { fg = M.base_30.orange },
TSVariable = { link = "TSConstructor" }, TSVariable = { link = "TSConstructor" },
TSConditional = { link = "TSInclude" }, TSConditional = { link = "TSInclude" },
} }
vim.opt.bg = "dark" vim.opt.bg = "dark"

Loading…
Cancel
Save