68 lines
1.4 KiB
Lua
68 lines
1.4 KiB
Lua
local theme = {}
|
|
|
|
theme.base_30 = {
|
|
white = '#ced4df',
|
|
darker_black = '#1c1c26',
|
|
black = '#20202A', -- nvim bg
|
|
black2 = '#25252f',
|
|
one_bg = '#2a2a34',
|
|
one_bg2 = '#34343e',
|
|
one_bg3 = '#3e3e48',
|
|
grey = '#484852',
|
|
grey_fg = '#4e4e58',
|
|
grey_fg2 = '#54545e',
|
|
light_grey = '#5a5a64',
|
|
red = '#ebb9b9',
|
|
baby_pink = '#EAC1C1',
|
|
pink = '#E9D1D1',
|
|
line = '#2d2d37', -- for lines like vertsplit
|
|
green = '#b1dba4',
|
|
vibrant_green = '#BEE0A8',
|
|
blue = '#CDDBF9',
|
|
nord_blue = '#BCCAEB',
|
|
yellow = '#E6DFB8',
|
|
sun = '#EEE8BA',
|
|
purple = '#f6bbe7',
|
|
dark_purple = '#E8B6E9',
|
|
teal = '#AEDCB7',
|
|
orange = '#E8CCA7',
|
|
cyan = '#b8dceb',
|
|
statusline_bg = '#262630',
|
|
lightbg = '#2e2e38',
|
|
pmenu_bg = '#ebb9b9',
|
|
folder_bg = '#b8dceb',
|
|
}
|
|
|
|
theme.base_16 = {
|
|
base00 = '#101010',
|
|
base01 = '#7c7c7c',
|
|
base02 = '#8e8e8e',
|
|
base03 = '#a0a0a0',
|
|
base04 = '#686868',
|
|
base05 = '#747474',
|
|
base06 = '#868686',
|
|
base07 = '#b9b9b9',
|
|
base08 = '#525252',
|
|
base09 = '#7c7c7c',
|
|
base0A = '#8e8e8e',
|
|
base0B = '#a0a0a0',
|
|
base0C = '#686868',
|
|
base0D = '#747474',
|
|
base0E = '#868686',
|
|
base0F = '#f7f7f7',
|
|
}
|
|
|
|
theme.type = 'dark'
|
|
require('base46').override_theme(theme, 'grayscale')
|
|
|
|
return {
|
|
base46 = {
|
|
theme = 'grayscale', -- default theme
|
|
hl_add = {},
|
|
hl_override = {},
|
|
integrations = {},
|
|
changed_themes = {},
|
|
transparency = false,
|
|
theme_toggle = { 'grayscale' },
|
|
},
|
|
}
|