colors updated need to ignore

This commit is contained in:
venus
2026-03-11 17:57:20 -05:00
parent 63bd661602
commit b7237dacaf
2 changed files with 19 additions and 19 deletions

View File

@@ -3,24 +3,24 @@
function M.setup()
require('base16-colorscheme').setup {
-- Background tones
base00 = '#291414', -- Default Background
base01 = '#452121', -- Lighter Background (status bars)
base02 = '#3e1e1e', -- Selection Background
base03 = '#756161', -- Comments, Invisibles
base00 = '#191724', -- Default Background
base01 = '#26233a', -- Lighter Background (status bars)
base02 = '#2e2b47', -- Selection Background
base03 = '#656182', -- Comments, Invisibles
-- Foreground tones
base04 = '#b6afaf', -- Dark Foreground (status bars)
base05 = '#f3f2f2', -- Default Foreground
base06 = '#f3f2f2', -- Light Foreground
base07 = '#f3f2f2', -- Lightest Foreground
base04 = '#908caa', -- Dark Foreground (status bars)
base05 = '#e0def4', -- Default Foreground
base06 = '#e0def4', -- Light Foreground
base07 = '#e0def4', -- Lightest Foreground
-- Accent colors
base08 = '#fd4663', -- Variables, XML Tags, Errors
base09 = '#cccc66', -- Integers, Constants
base0A = '#d6995c', -- Classes, Search Background
base0B = '#e46767', -- Strings, Diff Inserted
base0C = '#e9e996', -- Regex, Escape Chars
base0D = '#ec9393', -- Functions, Methods
base0E = '#e9bf96', -- Keywords, Storage
base0F = '#900017', -- Deprecated, Embedded Tags
base08 = '#eb6f92', -- Variables, XML Tags, Errors
base09 = '#31748f', -- Integers, Constants
base0A = '#9ccfd8', -- Classes, Search Background
base0B = '#ebbcba', -- Strings, Diff Inserted
base0C = '#96d1e9', -- Regex, Escape Chars
base0D = '#e99996', -- Functions, Methods
base0E = '#96dce9', -- Keywords, Storage
base0F = '#a00833', -- Deprecated, Embedded Tags
}
end