style(tokyonight): adjust colors
This commit is contained in:
parent
4fe0b6fed3
commit
885819878e
1 changed files with 9 additions and 2 deletions
|
|
@ -10,21 +10,28 @@ return {
|
||||||
local util = require("tokyonight.util")
|
local util = require("tokyonight.util")
|
||||||
tokyonight.setup({
|
tokyonight.setup({
|
||||||
styles = {
|
styles = {
|
||||||
|
-- See :help nvim_set_hl
|
||||||
comments = { italic = true },
|
comments = { italic = true },
|
||||||
|
--functions = { underdotted = true },
|
||||||
},
|
},
|
||||||
on_colors = function(colors)
|
on_colors = function(colors)
|
||||||
-- Brighten up comments a bit
|
-- Brighten up comments a bit
|
||||||
colors.comment = "#888fac"
|
colors.comment = "#888fac"
|
||||||
-- Better visible visual selection background color
|
-- Better visible visual selection background color
|
||||||
colors.bg_visual = "#e82a86"
|
--colors.bg_visual = "#e82a86"
|
||||||
|
--colors.bg_visual = colors.teal
|
||||||
end,
|
end,
|
||||||
on_highlights = function(hl, c)
|
on_highlights = function(hl, c)
|
||||||
-- Brighter line numbers
|
-- Brighter line numbers
|
||||||
hl.LineNr = {
|
hl.LineNr = {
|
||||||
fg = util.darken(c.dark5, 0.6),
|
fg = util.darken(c.dark5, 0.6),
|
||||||
}
|
}
|
||||||
|
--hl.ColorColumn = {
|
||||||
|
-- bg = c.purple,
|
||||||
|
--}
|
||||||
|
|
||||||
-- Remove borders from Telescope windows
|
-- Remove borders from Telescope windows
|
||||||
local prompt = "#4e3e6c"
|
local prompt = "#2d3149"
|
||||||
hl.TelescopeNormal = {
|
hl.TelescopeNormal = {
|
||||||
bg = c.bg_dark,
|
bg = c.bg_dark,
|
||||||
fg = c.fg_dark,
|
fg = c.fg_dark,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue