1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim: colors

This commit is contained in:
Henrik Hautakoski 2024-06-18 18:58:13 +02:00
parent ae33f89adb
commit 89ae7b116b

View file

@ -5,7 +5,7 @@ return {
base = '#0E1019',
mantle = '#0D0F17',
crust = '#0C0D14',
surface0 = '#131521',
surface0 = '#1a1c2d',
surface1 = '#343959',
surface2 = '#41476F',
overlay0 = '#3F4256',
@ -19,8 +19,7 @@ return {
highlight_overrides = {
mocha = function(colors)
return {
-- Normal = { fg = colors.text },
-- NormalNC = { fg = colors.text },
Visual = { bg = colors.overlay1 },
-- Floating windows
NormalFloat = { fg = colors.text, bg = colors.mantle },
@ -38,7 +37,7 @@ return {
WhichKeyFloat = { link = "Pmenu" },
-- indent lines
IblScope = { fg = colors.overlay1 },
IblScope = { fg = colors.surface0 },
IncSearch = { bg = colors.yellow },