feat(nvim): improve org keyword & schedule colors
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s

This commit is contained in:
Price Hiller 2024-05-28 19:28:30 -05:00
parent efcf21ae25
commit 0f48c14b83
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -295,6 +295,8 @@ return {
"@org.timestamp.inactive.delimiter",
get_hl("@org.timestamp.inactive"),
},
{ "@org.keyword.done", { fg = colors.springGreen, bold = true, italic = true } },
{ "@org.keyword.todo", { fg = colors.samuraiRed, bold = true, italic = true } },
{
"@org.priority.highest",
{ fg = colors.samuraiRed, bg = "#fabebe", nocombine = true, underdouble = true, bold = true },
@ -307,6 +309,20 @@ return {
"@org.priority.lowest",
{ fg = colors.fujiWhite, bg = colors.fujiGray, nocombine = true, underline = true, bold = true },
},
{
"@org.agenda.scheduled_past",
{
fg = colors.springViolet2,
italic = true,
},
},
{
"@org.agenda.deadline",
{
underdotted = true,
fg = colors.waveRed,
},
},
-- Titles/Headlines
{ "@markup.heading.1", { fg = colors.crystalBlue, bold = true } },