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

@@ -20,11 +20,11 @@
"nvim-colorizer.lua": { "branch": "master", "commit": "a065833f35a3a7cc3ef137ac88b5381da2ba302e" }, "nvim-colorizer.lua": { "branch": "master", "commit": "a065833f35a3a7cc3ef137ac88b5381da2ba302e" },
"nvim-dap": { "branch": "master", "commit": "a9d8cb68ee7184111dc66156c4a2ebabfbe01bc5" }, "nvim-dap": { "branch": "master", "commit": "a9d8cb68ee7184111dc66156c4a2ebabfbe01bc5" },
"nvim-java": { "branch": "main", "commit": "602a5f7fa92f9c1d425a2159133ff9de86842f0a" }, "nvim-java": { "branch": "main", "commit": "602a5f7fa92f9c1d425a2159133ff9de86842f0a" },
"nvim-lspconfig": { "branch": "master", "commit": "d8bf4c47385340ab2029402201d4d7c9f99f437a" }, "nvim-lspconfig": { "branch": "master", "commit": "0203a9608d63eda57679b01e69f33a7b4c34b0d1" },
"nvim-tree.lua": { "branch": "master", "commit": "4b30847c91d498446cb8440c03031359b045e050" }, "nvim-tree.lua": { "branch": "master", "commit": "4b30847c91d498446cb8440c03031359b045e050" },
"nvim-treesitter": { "branch": "main", "commit": "5cb05e1b0fa3c469958a2b26f36b3fe930af221c" }, "nvim-treesitter": { "branch": "main", "commit": "5cb05e1b0fa3c469958a2b26f36b3fe930af221c" },
"nvim-web-devicons": { "branch": "master", "commit": "737cf6c657898d0c697311d79d361288a1343d50" }, "nvim-web-devicons": { "branch": "master", "commit": "d7462543c9e366c0d196c7f67a945eaaf5d99414" },
"obsidian.nvim": { "branch": "main", "commit": "350586c9e873143c3f65e3c2667bd0324964e89c" }, "obsidian.nvim": { "branch": "main", "commit": "ffb5882b8b3a29acb615f253da96e1da5057f89d" },
"plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" }, "plenary.nvim": { "branch": "master", "commit": "b9fd5226c2f76c951fc8ed5923d85e4de065e509" },
"presence.nvim": { "branch": "main", "commit": "87c857a56b7703f976d3a5ef15967d80508df6e6" }, "presence.nvim": { "branch": "main", "commit": "87c857a56b7703f976d3a5ef15967d80508df6e6" },
"render-markdown.nvim": { "branch": "main", "commit": "e3c18ddd27a853f85a6f513a864cf4f2982b9f26" }, "render-markdown.nvim": { "branch": "main", "commit": "e3c18ddd27a853f85a6f513a864cf4f2982b9f26" },

View File

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