change color theme for tokyo
This commit is contained in:
parent
afca0914f4
commit
8ee0301719
6 changed files with 603 additions and 20 deletions
33
lua/custom/palette.lua
Normal file
33
lua/custom/palette.lua
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
---@class Palettepa
|
||||
local ret = {
|
||||
black = '#000000',
|
||||
white = '#FFFFFF',
|
||||
magenta = '#FF00FF',
|
||||
brown = '#100A09',
|
||||
brown2 = '#0f0906',
|
||||
yellow = '#997a00',
|
||||
trunk0 = '#0A0501',
|
||||
trunk6 = '#423D38',
|
||||
trunk7 = '#34302D',
|
||||
trunk8 = '#EADDD1',
|
||||
wine = '#A5697D',
|
||||
leaf4 = '#5F9B70',
|
||||
cyan = '#6EBCC9',
|
||||
-- oak color palette https://github.com/vigoux/oak/blob/master/autoload/oak.vim
|
||||
trunk1 = '#0E0701',
|
||||
trunk2 = '#342212',
|
||||
trunk3 = '#593C22',
|
||||
trunk4 = '#AC9682',
|
||||
trunk5 = '#FEEFE1',
|
||||
fur1 = '#7A5454',
|
||||
fur2 = '#A58A86',
|
||||
fur3 = '#E27950',
|
||||
fur4 = '#D69060',
|
||||
leaf1 = '#B990D5',
|
||||
leaf2 = '#2DC7D2',
|
||||
leaf3 = '#42BD7D',
|
||||
petal1 = '#FF4D4D',
|
||||
petal2 = '#F0C54C',
|
||||
}
|
||||
|
||||
return ret
|
||||
|
|
@ -52,4 +52,15 @@ return {
|
|||
}
|
||||
end,
|
||||
},
|
||||
{
|
||||
'norcalli/nvim-colorizer.lua',
|
||||
event = 'VimEnter',
|
||||
opts = { '*' },
|
||||
},
|
||||
-- {
|
||||
-- 'kao.nvim',
|
||||
-- dev = true,
|
||||
-- dir = '~/.config/nvim/plugin/',
|
||||
-- opts = { message = 'Hello' },
|
||||
-- },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue