-
Notifications
You must be signed in to change notification settings - Fork 699
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
User configurable Color Themes #29
Comments
Look and feel of Turbo Vision (not only colors) would be really great! |
This issue, for PowerShell/ConsoleGuiTools#129 It should be possible for a user to define the colors used for I'm renaming this Issue to be more consistent with this ask. |
Not sure if this helps but up to now I have just used yaml for specifying custom color combinations (but not new color codes): https://github.com/SMI/IsIdentifiable/blob/main/ii/TerminalGuiTheme.cs var themeFile = Path.Combine(TestContext.CurrentContext.TestDirectory, "theme.yaml");
var des = new Deserializer();
var theme = des.Deserialize<TerminalGuiTheme>(File.ReadAllText(themeFile)); Presumably we don't want a dependency on a specific persistence library though? |
Fixed by #2284 |
Should include other color themes, currently we have the Norton-esque theme, we could include a TurboVision-esque theme. The support is already in place, it is a matter of allocating new colors in each driver.
The text was updated successfully, but these errors were encountered: