mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 23:48:16 -07:00
fix https://github.com/NvChad/NvChad/issues/1027 | add theme toggle function
This commit is contained in:
parent
fb9d86d9cd
commit
1f1ca85c29
36 changed files with 145 additions and 36 deletions
|
|
@ -1,4 +1,4 @@
|
|||
local colors = require("base16").get_colors "base_30"
|
||||
local colors = require("base46").get_colors "base_30"
|
||||
|
||||
return {
|
||||
|
||||
|
|
@ -100,4 +100,26 @@ return {
|
|||
BufferLineDevIconDefaultSelected = {
|
||||
bg = "NONE",
|
||||
},
|
||||
|
||||
BufferLineDuplicate = {
|
||||
fg = "NONE",
|
||||
bg = colors.black2,
|
||||
},
|
||||
BufferLineDuplicateSelected = {
|
||||
fg = colors.red,
|
||||
bg = colors.black,
|
||||
},
|
||||
BufferLineDuplicateVisible = {
|
||||
fg = colors.blue,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
-- custom area
|
||||
BufferLineRightCustomAreaText1 = {
|
||||
bg = colors.grey,
|
||||
fg = colors.white,
|
||||
},
|
||||
BufferLineRightCustomAreaText2 = {
|
||||
fg = colors.red,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
local theme = require("base16").get_colors "base_16"
|
||||
local base_30 = require("base16").get_colors "base_30"
|
||||
local theme = require("base46").get_colors "base_16"
|
||||
local base_30 = require("base46").get_colors "base_30"
|
||||
|
||||
return {
|
||||
CmpItemKindConstant = { fg = theme.base09 },
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
local colors = require("base16").get_colors "base_30"
|
||||
local colors = require("base46").get_colors "base_30"
|
||||
|
||||
return {
|
||||
DevIconc = { bg = "NONE", fg = colors.blue },
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
local theme = require("base16").get_colors "base_16"
|
||||
local theme = require("base46").get_colors "base_16"
|
||||
|
||||
return {
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
local theme = require("base16").get_colors "base_16"
|
||||
local theme = require("base46").get_colors "base_16"
|
||||
|
||||
return {
|
||||
mailQuoted1 = {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
local theme = require("base16").get_colors "base_16"
|
||||
local theme = require("base46").get_colors "base_16"
|
||||
|
||||
return {
|
||||
Normal = {
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
local colors = require("base16").get_colors "base_30"
|
||||
local colors = require("base46").get_colors "base_30"
|
||||
local ui = require("core.utils").load_config().ui
|
||||
|
||||
local black = colors.black
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
local theme = require("base16").get_colors "base_16"
|
||||
local theme = require("base46").get_colors "base_16"
|
||||
|
||||
-- Standard syntax highlighting
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
local theme = require("base16").get_colors "base_16"
|
||||
local theme = require("base46").get_colors "base_16"
|
||||
|
||||
return {
|
||||
TSAnnotation = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue