62 lines
1.2 KiB
Lua
Executable File
62 lines
1.2 KiB
Lua
Executable File
-- Credits to original https://github.com/tiagovla/tokyodark.nvim
|
|
-- This is modified version of it
|
|
|
|
local M = {}
|
|
|
|
M.base_30 = {
|
|
white = "#A0A8CD",
|
|
darker_black = "#0c0d18",
|
|
black = "#11121D", -- nvim bg
|
|
black2 = "#171823",
|
|
one_bg = "#1d1e29",
|
|
one_bg2 = "#252631",
|
|
one_bg3 = "#252631",
|
|
grey = "#474853",
|
|
grey_fg = "#474853",
|
|
grey_fg2 = "#4e4f5a",
|
|
light_grey = "#545560",
|
|
red = "#ee6d85",
|
|
baby_pink = "#fd7c94",
|
|
pink = "#fe6D85",
|
|
line = "#252631",
|
|
green = "#98c379",
|
|
vibrant_green = "#95c561",
|
|
nord_blue = "#648ce1",
|
|
blue = "#7199ee",
|
|
yellow = "#d7a65f",
|
|
sun = "#dfae67",
|
|
purple = "#a485dd",
|
|
dark_purple = "#9071c9",
|
|
teal = "#519aba",
|
|
orange = "#f6955b",
|
|
cyan = "#38a89d",
|
|
statusline_bg = "#161722",
|
|
lightbg = "#2a2b36",
|
|
pmenu_bg = "#ee6d85",
|
|
folder_bg = "#7199ee",
|
|
}
|
|
|
|
M.base_16 = {
|
|
base00 = "#11121d",
|
|
base01 = "#1b1c27",
|
|
base02 = "#21222d",
|
|
base03 = "#282934",
|
|
base04 = "#30313c",
|
|
base05 = "#abb2bf",
|
|
base06 = "#b2b9c6",
|
|
base07 = "#A0A8CD",
|
|
base08 = "#ee6d85",
|
|
base09 = "#7199ee",
|
|
base0A = "#7199ee",
|
|
base0B = "#dfae67",
|
|
base0C = "#a485dd",
|
|
base0D = "#95c561",
|
|
base0E = "#a485dd",
|
|
base0F = "#f3627a",
|
|
}
|
|
|
|
M.type = "dark"
|
|
|
|
|
|
return M
|