mirror of
https://github.com/gabehf/base46.git
synced 2026-03-15 02:05:56 -07:00
restructure file module structure
This commit is contained in:
parent
6689ebc11e
commit
200e308561
56 changed files with 32 additions and 16 deletions
67
lua/base46/themes/monekai.lua
Normal file
67
lua/base46/themes/monekai.lua
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
local M = {}
|
||||
|
||||
M.base_30 = {
|
||||
white = "#bbc2cf",
|
||||
darker_black = "#1f222b",
|
||||
black = "#242730", -- nvim bg
|
||||
black2 = "#292c35",
|
||||
one_bg = "#2e313a", -- real bg of onedark
|
||||
one_bg2 = "#373a43",
|
||||
one_bg3 = "#3f424b",
|
||||
grey = "#494c55",
|
||||
grey_fg = "#52555e",
|
||||
grey_fg2 = "#5b5e67",
|
||||
light_grey = "#63666f",
|
||||
red = "#e36d76",
|
||||
baby_pink = "#f98385",
|
||||
pink = "#f36d76",
|
||||
line = "#363942", -- for lines like vertsplit
|
||||
green = "#96c367",
|
||||
vibrant_green = "#99c366",
|
||||
nord_blue = "#81A1C1",
|
||||
blue = "#51afef",
|
||||
yellow = "#e6c181",
|
||||
sun = "#fce668",
|
||||
purple = "#c885d7",
|
||||
dark_purple = "#b26fc1",
|
||||
teal = "#34bfd0",
|
||||
orange = "#d39467",
|
||||
cyan = "#41afef",
|
||||
statusline_bg = "#292c35",
|
||||
lightbg = "#3d4049",
|
||||
pmenu_bg = "#99c366",
|
||||
folder_bg = "#61afef",
|
||||
}
|
||||
|
||||
M.base_16 = {
|
||||
base00 = "#242730",
|
||||
base01 = "#2a2e38",
|
||||
base02 = "#484854",
|
||||
base03 = "#545862",
|
||||
base04 = "#5b5e67",
|
||||
base05 = "#afb6c3",
|
||||
base06 = "#b5bcc9",
|
||||
base07 = "#bbc2cf",
|
||||
base08 = "#d39467",
|
||||
base09 = "#b3a5d4",
|
||||
base0A = "#61afef",
|
||||
base0B = "#e6c181",
|
||||
base0C = "#61afef",
|
||||
base0D = "#96c376",
|
||||
base0E = "#e36d76",
|
||||
base0F = "#e36d76",
|
||||
}
|
||||
|
||||
M.polish_hl = {
|
||||
TSParameter = {
|
||||
fg = M.base_30.blue,
|
||||
},
|
||||
TSFieldKey = {
|
||||
fg = M.base_30.red,
|
||||
},
|
||||
}
|
||||
M.type = "dark"
|
||||
|
||||
M = require("base46").override_theme(M, "monekai")
|
||||
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue