Now that italics are working again, revisit theme

Add back italics.  They don't work in TMUX still, but at least I can now
use them in the theme to better hilight function parameters.
This commit is contained in:
Gwen 2023-01-01 13:45:23 -05:00
parent f6884568cc
commit db381e88ba
Signed by: ludens
GPG Key ID: 4DB217ABEC8E37B0
1 changed files with 3 additions and 6 deletions

View File

@ -7,17 +7,14 @@ inherits = "gruvbox"
# Make operators less loud but stil stand out
"operator" = "fg3"
# Remove italics (can cause issues with tmux)
"comment" = "gray1"
# Unify look of variables with slight contrast difference to emphasize
# function parameters.
"variable" = "fg2"
"variable.parameter" = "fg1"
"variable.builtin" = "fg1"
"variable.parameter" = { fg = "fg1", modifiers = ["italic"] }
"variable.builtin" = { fg = "fg1", modifiers = ["italic"] }
# Unify look of functions
"function" = "green1"
"function" = "green1"
"function.macro" = "aqua1"
"function.builtin" = { fg = "green1", modifiers = ["bold"] }