mirror of
https://github.com/webhooked/kanso.nvim.git
synced 2026-06-04 08:07:03 +02:00
fix: light mode correction in init and README
This commit is contained in:
parent
beb1cc74be
commit
925b8a2100
2 changed files with 2 additions and 3 deletions
|
|
@ -94,10 +94,9 @@ require('kanso').setup({
|
|||
overrides = function(colors) -- add/modify highlights
|
||||
return {}
|
||||
end,
|
||||
theme = "ink", -- Load "ink" theme
|
||||
background = { -- map the value of 'background' option to a theme
|
||||
dark = "ink", -- try "zen" !
|
||||
light = "ink" -- try "pearl" or "mist" !
|
||||
light = "pearl" -- try "mist" !
|
||||
},
|
||||
foreground = "default", -- "default" or "contrast" (can also be a table like background)
|
||||
})
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ M.config = {
|
|||
return {}
|
||||
end,
|
||||
---@type { dark: string, light: string }
|
||||
background = { dark = "ink", light = "ink" },
|
||||
background = { dark = "ink", light = "pearl" },
|
||||
theme = "ink",
|
||||
---@type { dark: "default"|"contrast", light: "default"|"contrast" }|"default"|"contrast"
|
||||
foreground = "default",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue