add outline

This commit is contained in:
Tomas Mirchev 2025-09-26 02:44:53 +00:00
parent f87edeefac
commit 2b028ae5d0
4 changed files with 8 additions and 4 deletions

View File

@ -4,6 +4,7 @@ function M.get(P)
local colors = {
base = P.white,
surface = P.gray_light,
outline = P.gray_dark,
text = P.black,
muted = P.gray,
accent = P.blue,

View File

@ -17,8 +17,8 @@ function M.get(C)
MatchParen = { fg = C.accent, bg = C.accent_light, bold = true },
EndOfBuffer = { fg = C.base }, -- End-of-buffer marker (~ lines)
WinSeparator = { fg = C.muted },
StatusLine = { fg = C.muted, bg = C.none }, -- Active statusline (where filename)
WinSeparator = { fg = C.outline },
StatusLine = { fg = C.outline, bg = C.none }, -- Active statusline (where filename)
MsgArea = { fg = C.text, bg = C.none }, -- Command-line / message area
MsgSeparator = { fg = C.text, bg = C.surface }, -- Separator for messages
ModeMsg = { fg = C.text },

View File

@ -3,10 +3,12 @@ local M = {}
function M.get(C)
return {
Comment = { fg = C.muted, italic = true },
String = { fg = C.green },
Boolean = { fg = C.accent, bold = true, italic = true },
Number = { fg = C.accent },
-- general
-- syntax color
Constant = { fg = C.syntax },
String = { fg = C.syntax },
Function = { fg = C.syntax },
Type = { fg = C.syntax },
Statement = { fg = C.syntax },

View File

@ -24,6 +24,7 @@ local modes = {
}
local shared_palette = {
gray_dark = 245,
gray = 247,
gray_light = 253,
orange = 166,