We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Themes need some TLC... Maybe the ability to define a theme inside a tag will help something along the lines:
<Theme Name="MyTheme"> colors.background: red; </Theme>
or maybe json would be better?
<Theme Name="MyTheme"> { colors: { background: "red" } } </Theme>
HOCON could allow both syntaxes: https://github.com/akkadotnet/HOCON
The API will be updated to allow a theme update in one string:
IStyled.AddTheme("MyTheme", themeJsonOrString);
Lastly, need to add a way to switch between themes. API:
IStyled.SetTheme("MyTheme");
Not sure about a Tag version for that. Maybe:
<Theme SetTheme="MyTheme />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Themes need some TLC... Maybe the ability to define a theme inside a tag will help something along the lines:
or maybe json would be better?
HOCON could allow both syntaxes: https://github.com/akkadotnet/HOCON
The API will be updated to allow a theme update in one string:
Lastly, need to add a way to switch between themes. API:
Not sure about a Tag version for that. Maybe:
The text was updated successfully, but these errors were encountered: