mirror of
https://github.com/RedWizardsLab/EchoHub.git
synced 2026-09-07 07:36:01 +02:00
feat: add true transparent background support via Terminal.Gui fork
Add Terminal.Gui fork as submodule with transparent color support (Color.Transparent emitting CSI 39m/49m default bg/fg sequences). Switch EchoHub.Client from NuGet to project reference. Update Transparent theme to use real terminal transparency.
This commit is contained in:
@@ -418,30 +418,30 @@ public static class ThemeManager
|
||||
Base = new ThemeColors
|
||||
{
|
||||
Foreground = "White",
|
||||
Background = "Black",
|
||||
Background = "Transparent",
|
||||
FocusForeground = "BrightCyan",
|
||||
FocusBackground = "Black"
|
||||
FocusBackground = "Transparent"
|
||||
},
|
||||
Menu = new ThemeColors
|
||||
{
|
||||
Foreground = "White",
|
||||
Background = "Black",
|
||||
Background = "Transparent",
|
||||
FocusForeground = "BrightCyan",
|
||||
FocusBackground = "Black"
|
||||
FocusBackground = "Transparent"
|
||||
},
|
||||
Dialog = new ThemeColors
|
||||
{
|
||||
Foreground = "White",
|
||||
Background = "Black",
|
||||
Background = "DarkGray",
|
||||
FocusForeground = "BrightCyan",
|
||||
FocusBackground = "Black"
|
||||
},
|
||||
Status = new ThemeColors
|
||||
{
|
||||
Foreground = "Gray",
|
||||
Background = "Black",
|
||||
Background = "Transparent",
|
||||
FocusForeground = "Gray",
|
||||
FocusBackground = "Black"
|
||||
FocusBackground = "Transparent"
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user