fix: light mode correction in init and README

This commit is contained in:
Webhooked 2025-07-25 15:56:55 +02:00
commit 925b8a2100
2 changed files with 2 additions and 3 deletions

View file

@ -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)
})

View file

@ -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",