add outline
This commit is contained in:
parent
f87edeefac
commit
2b028ae5d0
@ -4,6 +4,7 @@ function M.get(P)
|
|||||||
local colors = {
|
local colors = {
|
||||||
base = P.white,
|
base = P.white,
|
||||||
surface = P.gray_light,
|
surface = P.gray_light,
|
||||||
|
outline = P.gray_dark,
|
||||||
text = P.black,
|
text = P.black,
|
||||||
muted = P.gray,
|
muted = P.gray,
|
||||||
accent = P.blue,
|
accent = P.blue,
|
||||||
|
|||||||
@ -17,8 +17,8 @@ function M.get(C)
|
|||||||
MatchParen = { fg = C.accent, bg = C.accent_light, bold = true },
|
MatchParen = { fg = C.accent, bg = C.accent_light, bold = true },
|
||||||
EndOfBuffer = { fg = C.base }, -- End-of-buffer marker (~ lines)
|
EndOfBuffer = { fg = C.base }, -- End-of-buffer marker (~ lines)
|
||||||
|
|
||||||
WinSeparator = { fg = C.muted },
|
WinSeparator = { fg = C.outline },
|
||||||
StatusLine = { fg = C.muted, bg = C.none }, -- Active statusline (where filename)
|
StatusLine = { fg = C.outline, bg = C.none }, -- Active statusline (where filename)
|
||||||
MsgArea = { fg = C.text, bg = C.none }, -- Command-line / message area
|
MsgArea = { fg = C.text, bg = C.none }, -- Command-line / message area
|
||||||
MsgSeparator = { fg = C.text, bg = C.surface }, -- Separator for messages
|
MsgSeparator = { fg = C.text, bg = C.surface }, -- Separator for messages
|
||||||
ModeMsg = { fg = C.text },
|
ModeMsg = { fg = C.text },
|
||||||
|
|||||||
@ -3,10 +3,12 @@ local M = {}
|
|||||||
function M.get(C)
|
function M.get(C)
|
||||||
return {
|
return {
|
||||||
Comment = { fg = C.muted, italic = true },
|
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 },
|
Constant = { fg = C.syntax },
|
||||||
String = { fg = C.syntax },
|
|
||||||
Function = { fg = C.syntax },
|
Function = { fg = C.syntax },
|
||||||
Type = { fg = C.syntax },
|
Type = { fg = C.syntax },
|
||||||
Statement = { fg = C.syntax },
|
Statement = { fg = C.syntax },
|
||||||
|
|||||||
@ -24,6 +24,7 @@ local modes = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
local shared_palette = {
|
local shared_palette = {
|
||||||
|
gray_dark = 245,
|
||||||
gray = 247,
|
gray = 247,
|
||||||
gray_light = 253,
|
gray_light = 253,
|
||||||
orange = 166,
|
orange = 166,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user