-
First off, thanks to folke for all the hard work! Currently I am trying to set custom colors for the I am using lazy.nvim as my plugin manager; here is my tokyonight plugin setup: {
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
config = function()
require("tokyonight").setup({
on_colors = function(colors)
colors.bg_dark = "#1b1d1e"
colors.bg = "#2c2f30"
colors.fg_gutter = "#4a527c"
end
})
vim.cmd([[colorscheme tokyonight]])
end
} Am I loading/setting up the colors incorrectly? The Any help is much appreciated, thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Then you probably need to change another color? Check the code to see what you need to change |
Beta Was this translation helpful? Give feedback.
-
I was able to correctly set the sidebar and float colors I wanted by setting |
Beta Was this translation helpful? Give feedback.
I was able to correctly set the sidebar and float colors I wanted by setting
bg_float
andbg_sidebar
inon_colors()
. Fromcolors.lua
, it looks like these values should be populating frombg_dark
orbg
depending on if your sidebars/floats are dark or normal, but in my case I had to directly set them.