fix: update transparent color handling to use 'None' instead of 'Transparent' across UI components

This commit is contained in:
HueByte
2026-02-22 05:50:28 +01:00
parent bc8e2fd7da
commit d12f249222
6 changed files with 40 additions and 40 deletions
+6 -6
View File
@@ -418,16 +418,16 @@ public static class ThemeManager
Base = new ThemeColors
{
Foreground = "White",
Background = "Transparent",
Background = "None",
FocusForeground = "BrightCyan",
FocusBackground = "Transparent"
FocusBackground = "None"
},
Menu = new ThemeColors
{
Foreground = "White",
Background = "Transparent",
Background = "None",
FocusForeground = "BrightCyan",
FocusBackground = "Transparent"
FocusBackground = "None"
},
Dialog = new ThemeColors
{
@@ -439,9 +439,9 @@ public static class ThemeManager
Status = new ThemeColors
{
Foreground = "Gray",
Background = "Transparent",
Background = "None",
FocusForeground = "Gray",
FocusBackground = "Transparent"
FocusBackground = "None"
}
};