Update sidra.toml

Fix color names for theme-check errors
pull/13575/head
Md Atiquz Zaman 2025-06-24 08:51:30 +05:30 committed by GitHub
parent 352bb6600c
commit 5e3c7a35fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 9 deletions

View File

@ -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