theme changes

This commit is contained in:
Oliver Ladner 2024-05-14 12:15:00 +02:00
commit e452f96b64
3 changed files with 86 additions and 1 deletions

View file

@ -0,0 +1,58 @@
return {
"catppuccin/nvim",
name = "catppuccin",
tag = "stable",
lazy = false,
priority = 1000,
opts = {},
-- config = function()
-- local tokyonight = require("tokyonight")
-- local util = require("tokyonight.util")
-- tokyonight.setup({
-- styles = {
-- comments = { italic = true },
-- },
-- on_colors = function(colors)
-- -- Brighten up comments a bit
-- colors.comment = "#888fac"
-- -- Better visible visual selection background color
-- colors.bg_visual = "#e82a86"
-- end,
-- on_highlights = function(hl, c)
-- -- Brighter line numbers
-- hl.LineNr = {
-- fg = util.darken(c.dark5, 0.6),
-- }
-- -- Remove borders from Telescope windows
-- local prompt = "#4e3e6c"
-- hl.TelescopeNormal = {
-- bg = c.bg_dark,
-- fg = c.fg_dark,
-- }
-- hl.TelescopeBorder = {
-- bg = c.bg_dark,
-- fg = c.bg_dark,
-- }
-- hl.TelescopePromptNormal = {
-- bg = prompt,
-- }
-- hl.TelescopePromptBorder = {
-- bg = prompt,
-- fg = prompt,
-- }
-- hl.TelescopePromptTitle = {
-- bg = prompt,
-- fg = prompt,
-- }
-- hl.TelescopePreviewTitle = {
-- bg = c.bg_dark,
-- fg = c.bg_dark,
-- }
-- hl.TelescopeResultsTitle = {
-- bg = c.bg_dark,
-- fg = c.bg_dark,
-- }
-- end,
-- })
-- end,
}

View file

@ -0,0 +1,27 @@
return {
"rebelot/kanagawa.nvim",
tag = "master",
lazy = false,
priority = 1000,
opts = {},
config = function()
require("kanagawa").setup({
colors = {
palette = {
-- change all usages of these colors
sumiInk0 = "#000000",
fujiWhite = "#FFFFFF",
},
theme = {
all = {
ui = {
bg_gutter = "none",
--bg_visual = "#8a9a7b",
bg_visual = "#938056",
},
},
},
},
})
end,
}

View file

@ -20,7 +20,7 @@ return {
on_highlights = function(hl, c)
-- Brighter line numbers
hl.LineNr = {
fg = util.darken(c.teal, 0.6),
fg = util.darken(c.dark5, 0.6),
}
-- Remove borders from Telescope windows
local prompt = "#4e3e6c"