mirror of https://github.com/helix-editor/helix
parent
352bb6600c
commit
5e3c7a35fd
|
@ -79,15 +79,15 @@
|
||||||
|
|
||||||
|
|
||||||
# HINT INFO ERROR & WARNING
|
# HINT INFO ERROR & WARNING
|
||||||
"diagnostic.hint" = { underline = { color = "bright-yellow", style = "curl" } }
|
"diagnostic.hint" = { underline = { color = "cl_hint", style = "curl" } }
|
||||||
"diagnostic.info" = { underline = { color = "bright-yellow", style = "curl" } }
|
"diagnostic.info" = { underline = { color = "cl_info", style = "curl" } }
|
||||||
"diagnostic.error" = { underline = { color = "bright-pink", style = "curl" } }
|
"diagnostic.error" = { underline = { color = "cl_error", style = "curl" } }
|
||||||
"diagnostic.warning" = { underline = { color = "bright-yellow", style = "curl" } }
|
"diagnostic.warning" = { underline = { color = "cl_warning", style = "curl" } }
|
||||||
|
|
||||||
hint = "bright-yellow"
|
hint = "cl_hint"
|
||||||
info = "bright-yellow"
|
info = "cl_info"
|
||||||
error = "bright-pink"
|
error = "cl_error"
|
||||||
warning = "bright-yellow"
|
warning = "cl_warning"
|
||||||
|
|
||||||
|
|
||||||
# ===========================
|
# ===========================
|
||||||
|
@ -105,7 +105,7 @@ namespace = "#7095bf" # Steel blue
|
||||||
punctuation = "#FFFFFF" # White
|
punctuation = "#FFFFFF" # White
|
||||||
"punctuation.delimiter" = "#FFFFFF" # White (delimiter punctuation)
|
"punctuation.delimiter" = "#FFFFFF" # White (delimiter punctuation)
|
||||||
operator = "#987654" # Dusty brown (used to be "muddy")
|
operator = "#987654" # Dusty brown (used to be "muddy")
|
||||||
special = "pink" # Pink Color
|
special = "#c90076" # Pink Color
|
||||||
|
|
||||||
# === VARIABLES ===
|
# === VARIABLES ===
|
||||||
variable = "#7ec67f" # Soft green
|
variable = "#7ec67f" # Soft green
|
||||||
|
@ -210,3 +210,10 @@ fg_statusline = "#D3D3D3" # Light gray (statusline text)
|
||||||
bg_statusline = "#303030" # Dark gray (statusline background)
|
bg_statusline = "#303030" # Dark gray (statusline background)
|
||||||
fg_inactive = "#4b5059" # Dim gray (inactive statusline text)
|
fg_inactive = "#4b5059" # Dim gray (inactive statusline text)
|
||||||
bg_inactive = "#303030" # Dark gray (inactive statusline bg)
|
bg_inactive = "#303030" # Dark gray (inactive statusline bg)
|
||||||
|
|
||||||
|
# ===== HINT INFO ERROR & WARNING COLORS =====
|
||||||
|
|
||||||
|
cl_hint = "#f1fa8c" # Bright yellow
|
||||||
|
cl_info = "#f1fa8c" # Same as hint
|
||||||
|
cl_error = "#ff69b4" # Bright pink
|
||||||
|
cl_warning = "#f1fa8c" # Same as hint
|
||||||
|
|
Loading…
Reference in New Issue