mirror of
https://github.com/gabehf/base46.git
synced 2026-03-10 16:00:30 -07:00
Merge pull request #28 from Manas140/master
added base16-classic-dark theme
This commit is contained in:
commit
ccb8f6922e
2 changed files with 53 additions and 0 deletions
35
lua/hl_themes/classic-dark.lua
Normal file
35
lua/hl_themes/classic-dark.lua
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
local colors = {
|
||||||
|
white = "#d0D0D0",
|
||||||
|
darker_black = "#121212",
|
||||||
|
black = "#151515", -- nvim bg
|
||||||
|
black2 = "#181818",
|
||||||
|
one_bg = "#1f1f1f",
|
||||||
|
one_bg2 = "#282828",
|
||||||
|
one_bg3 = "#303030",
|
||||||
|
grey = "#3d3d3d",
|
||||||
|
grey_fg = "#474747",
|
||||||
|
grey_fg2 = "#515151",
|
||||||
|
light_grey = "#595959",
|
||||||
|
red = "#AC4142",
|
||||||
|
baby_pink = "#bb5051",
|
||||||
|
pink = "#bb5051",
|
||||||
|
line = "#242424", -- for lines like vertsplit
|
||||||
|
green = "#90A959",
|
||||||
|
vibrant_green = "#9fb868",
|
||||||
|
nord_blue = "#5d92a8",
|
||||||
|
blue = "#6A9FB5",
|
||||||
|
yellow = "#F4BF75",
|
||||||
|
sun = "#fcc77d",
|
||||||
|
purple = "#AA759F",
|
||||||
|
dark_purple = "#AA759F",
|
||||||
|
teal = "#75B5AA",
|
||||||
|
orange = "#F4BF75",
|
||||||
|
cyan = "#75B5AA",
|
||||||
|
statusline_bg = "#181818",
|
||||||
|
lightbg = "#1b1b1b",
|
||||||
|
lightbg2 = "#1f1f1f",
|
||||||
|
pmenu_bg = "#90A959",
|
||||||
|
folder_bg = "#6A9FB5",
|
||||||
|
}
|
||||||
|
|
||||||
|
return colors
|
||||||
18
lua/themes/classic-dark-base16.lua
Normal file
18
lua/themes/classic-dark-base16.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
return {
|
||||||
|
base00 = "151515",
|
||||||
|
base01 = "1f1f1f",
|
||||||
|
base02 = "282828",
|
||||||
|
base03 = "1b1b1b",
|
||||||
|
base04 = "d0d0d0",
|
||||||
|
base05 = "d0d0d0",
|
||||||
|
base06 = "e0e0e0",
|
||||||
|
base07 = "1f1f1f",
|
||||||
|
base08 = "AC4142",
|
||||||
|
base09 = "F4BF75",
|
||||||
|
base0A = "F4BF75",
|
||||||
|
base0B = "90A959",
|
||||||
|
base0C = "75B5AA",
|
||||||
|
base0D = "6A9FB5",
|
||||||
|
base0E = "AA759F",
|
||||||
|
base0F = "F4BF75",
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue