86 lines
2.4 KiB
Lua
Executable File
86 lines
2.4 KiB
Lua
Executable File
-- credits to original theme for existing https://github.com/primer/github-vscode-theme
|
|
-- This is a modified version of it
|
|
|
|
local M = {}
|
|
|
|
M.base_30 = {
|
|
white = "#d3dbe3",
|
|
darker_black = "#1F2428",
|
|
black = "#24292E", -- nvim bg
|
|
black2 = "#2e3338",
|
|
one_bg = "#33383d",
|
|
one_bg2 = "#383d42", -- StatusBar (filename)
|
|
one_bg3 = "#42474c",
|
|
grey = "#4c5156", -- Line numbers (shouldn't be base01?)
|
|
grey_fg = "#565b60", -- Why this affects comments?
|
|
grey_fg2 = "#60656a",
|
|
light_grey = "#6a6f74",
|
|
red = "#ff7f8d", -- StatusBar (username)
|
|
baby_pink = "#ffa198",
|
|
pink = "#ec6cb9",
|
|
line = "#33383d", -- for lines like vertsplit
|
|
green = "#56d364", -- StatusBar (file percentage)
|
|
vibrant_green = "#85e89d",
|
|
nord_blue = "#58a6ff", -- Mode indicator
|
|
blue = "#79c0ff",
|
|
yellow = "#ffdf5d",
|
|
sun = "#ffea7f",
|
|
purple = "#d2a8ff",
|
|
dark_purple = "#bc8cff",
|
|
teal = "#39c5cf",
|
|
orange = "#ffab70",
|
|
cyan = "#56d4dd",
|
|
statusline_bg = "#2b3035",
|
|
lightbg = "#383d42",
|
|
pmenu_bg = "#58a6ff", -- Command bar suggestions
|
|
folder_bg = "#58a6ff",
|
|
}
|
|
|
|
M.base_16 = {
|
|
base00 = "#24292E", -- Default bg
|
|
base01 = "#33383d", -- Lighter bg (status bar, line number, folding mks)
|
|
base02 = "#383d42", -- Selection bg
|
|
base03 = "#42474c", -- Comments, invisibles, line hl
|
|
base04 = "#4c5156", -- Dark fg (status bars)
|
|
base05 = "#c9d1d9", -- Default fg (caret, delimiters, Operators)
|
|
base06 = "#d3dbe3", -- Light fg (not often used)
|
|
base07 = "#dde5ed", -- Light bg (not often used)
|
|
base08 = "#B392E9", -- Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted
|
|
base09 = "#ffab70", -- Integers, Boolean, Constants, XML Attributes, Markup Link Url
|
|
base0A = "#ffdf5d", -- Classes, Markup Bold, Search Text Background
|
|
base0B = "#a5d6ff", -- Strings, Inherited Class, Markup Code, Diff Inserted
|
|
base0C = "#83caff", -- Support, regex, escape chars
|
|
base0D = "#6AB1F0", -- Function, methods, headings
|
|
base0E = "#ff7f8d", -- Keywords
|
|
base0F = "#85e89d", -- Deprecated, open/close embedded tags
|
|
}
|
|
|
|
M.type = "dark"
|
|
|
|
M.polish_hl = {
|
|
["@punctuation.bracket"] = {
|
|
fg = M.base_30.orange,
|
|
},
|
|
|
|
["@string"] = {
|
|
fg = M.base_30.white,
|
|
},
|
|
|
|
["@field.key"] = {
|
|
fg = M.base_30.white,
|
|
},
|
|
|
|
["@constructor"] = {
|
|
fg = M.base_30.vibrant_green,
|
|
bold = true,
|
|
},
|
|
|
|
["@tag.attribute"] = {
|
|
link = "@method",
|
|
},
|
|
}
|
|
|
|
M = require("base46").override_theme(M, "github_dark")
|
|
|
|
return M
|