diff options
| -rw-r--r-- | dot-config/nvim/lua/plugins/theme.lua | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/dot-config/nvim/lua/plugins/theme.lua b/dot-config/nvim/lua/plugins/theme.lua index 5cd294d..1e3e8ad 100644 --- a/dot-config/nvim/lua/plugins/theme.lua +++ b/dot-config/nvim/lua/plugins/theme.lua @@ -46,6 +46,42 @@ return { priority = 1000, opts = { transparent_background = true, + float = { + transparent = true, + }, + color_overrides = { + frappe = { + -- colors from https://primer.style/product/getting-started/foundations/color-usage/ + -- see https://primer.style/primitives/storybook/?path=/story/color-base-scales--all-scales&globals=theme%3Adark_high_contrast + rosewater = "#91cbff", + flamingo = "#addcff", + pink = "#addcff", + mauve = "#ff9492", + red = "#ff9492", + maroon = "#ffffff", + peach = "#addcff", + yellow = "#f0b72f", + green = "#addcff", + teal = "#91cbff", + sky = "#91cbff", + sapphire = "#91cbff", + blue = "#dbb7ff", + lavender = "#ffffff", + text = "#ffffff", + subtext1 = "#d1d7e0", + subtext0 = "#b7bdc8", + overlay2 = "#9198a1", + overlay1 = "#656c76", + overlay0 = "#3d444d", + surface2 = "#3d444d", + surface1 = "#2f3742", + surface0 = "#2a313c", + base = "#000000", + mantle = "#000000", + crust = "#000000", + }, + }, + no_italic = true, }, }, @@ -164,7 +200,7 @@ return { { "LazyVim/LazyVim", opts = { - colorscheme = "sonokai", + colorscheme = "catppuccin-frappe", }, }, } |
