diff options
| author | notken12 <kendotzhou@gmail.com> | 2022-09-28 08:54:42 -0400 |
|---|---|---|
| committer | notken12 <kendotzhou@gmail.com> | 2022-09-28 08:54:42 -0400 |
| commit | fdb7707dbfbc284a991faf8fed99b1327c38901a (patch) | |
| tree | 5b3e2d71c344edc8c59f55fb9c7eae5252d59aab /src | |
| parent | gitignore (diff) | |
fix yoru and ayu dark themes
Diffstat (limited to 'src')
| -rw-r--r-- | src/template-nvchad.toml | 4 | ||||
| -rw-r--r-- | src/themes/ayu_dark.lua (renamed from src/themes/ayu-dark.lua) | 0 | ||||
| -rw-r--r-- | src/themes/yoru.lua | 93 |
3 files changed, 49 insertions, 48 deletions
diff --git a/src/template-nvchad.toml b/src/template-nvchad.toml index ca696c3..23c797b 100644 --- a/src/template-nvchad.toml +++ b/src/template-nvchad.toml @@ -363,5 +363,5 @@ ToggleTerm1FloatBorder = 'line' [Illuminate] IlluminatedWordText = '- base02 - -' -IlluminatedWordRead = 'link:IlluminatedWordText' -IlluminatedWordWrite = 'link:IlluminatedWordText' +IlluminatedWordRead = '- base02 - -' +IlluminatedWordWrite = '- base02 - -' diff --git a/src/themes/ayu-dark.lua b/src/themes/ayu_dark.lua index bb41785..bb41785 100644 --- a/src/themes/ayu-dark.lua +++ b/src/themes/ayu_dark.lua diff --git a/src/themes/yoru.lua b/src/themes/yoru.lua index c58d8ad..95d9286 100644 --- a/src/themes/yoru.lua +++ b/src/themes/yoru.lua @@ -1,55 +1,56 @@ local M = {} M.base_30 = { - white = "#edeff0", - darker_black = "#060809", - black = "#0c0e0f", -- nvim bg - lighter_black = "#121415", - one_bg = "#161819", - one_bg2 = "#1f2122", - one_bg3 = "#27292a", - grey = "#343637", - grey_fg = "#3e4041", - grey_fg2 = "#484a4b", - light_grey = "#505253", - red = "#DF5B61", - baby_pink = "#EE6A70", - pink = "#e8646a", - line = "#1b1d1e", -- for lines like vertsplit - green = "#78B892", - vibrant_green = "#81c19b", - nord_blue = "#5A84BC", - blue = "#6791C9", - yellow = "#ecd28b", - sun = "#f6dc95", - purple = "#c58cec", - dark_purple = "#BC83E3", - teal = "#70b8ca", - orange = "#E89982", - cyan = "#67AFC1", - statusline_bg = "#101213", - lightbg = "#1d1f20", - pmenu_bg = "#78B892", - folder_bg = "#6791C9", + white = "#edeff0", + darker_black = "#060809", + black = "#0c0e0f", -- nvim bg + black2 = "#0d181c", + lighter_black = "#121415", + one_bg = "#161819", + one_bg2 = "#1f2122", + one_bg3 = "#27292a", + grey = "#343637", + grey_fg = "#3e4041", + grey_fg2 = "#484a4b", + light_grey = "#505253", + red = "#DF5B61", + baby_pink = "#EE6A70", + pink = "#e8646a", + line = "#1b1d1e", -- for lines like vertsplit + green = "#78B892", + vibrant_green = "#81c19b", + nord_blue = "#5A84BC", + blue = "#6791C9", + yellow = "#ecd28b", + sun = "#f6dc95", + purple = "#c58cec", + dark_purple = "#BC83E3", + teal = "#70b8ca", + orange = "#E89982", + cyan = "#67AFC1", + statusline_bg = "#101213", + lightbg = "#1d1f20", + pmenu_bg = "#78B892", + folder_bg = "#6791C9", } M.base_16 = { - base00 = "#0c0e0f", - base01 = "#121415", - base02 = "#161819", - base03 = "#1f2122", - base04 = "#27292a", - base05 = "#edeff0", - base06 = "#e4e6e7", - base07 = "#f2f4f5", - base08 = "#f26e74", - base09 = "#ecd28b", - base0A = "#e79881", - base0B = "#82c29c", - base0C = "#6791C9", - base0D = "#709ad2", - base0E = "#c58cec", - base0F = "#e8646a", + base00 = "#0c0e0f", + base01 = "#121415", + base02 = "#161819", + base03 = "#1f2122", + base04 = "#27292a", + base05 = "#edeff0", + base06 = "#e4e6e7", + base07 = "#f2f4f5", + base08 = "#f26e74", + base09 = "#ecd28b", + base0A = "#e79881", + base0B = "#82c29c", + base0C = "#6791C9", + base0D = "#709ad2", + base0E = "#c58cec", + base0F = "#e8646a", } vim.opt.bg = "dark" |