mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-05 23:34:09 +02:00
fix: update transparent color handling to use 'None' instead of 'Transparent' across UI components
This commit is contained in:
@@ -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"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user