-
Notifications
You must be signed in to change notification settings - Fork 7
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
[Feature request] Any chance for custom color schemes #21
Comments
It seems the color schemes are read/sourced from: so if you put your theme there and then add a new selection line to the file ...
ComboBox {
id: colorscheme
currentIndex: plasmoid.configuration.colorscheme
model: ListModel {
id: cbItems
ListElement { text: "BlackOnLightYellow"; }
ListElement { text: "BlackOnRandomLight"; }
ListElement { text: "Linux"; }
ListElement { text: "BlackOnWhite"; }
ListElement { text: "DarkPastels"; }
ListElement { text: "GreenOnBlack"; }
ListElement { text: "WhiteOnBlack"; }
ListElement { text: "BreezeModified"; }
ListElement { text: "cool-retro-term"; }
ListElement { text: "Tango"; }
ListElement { text: "Ubuntu"; }
}
}
... here I have added Tango and Ubuntu (which already exists) and I have tested and it works for me. There are different styles of color scheme files and it only works with certain formats so I would just copy/rename one of the theme files that already works and edit it as needed to create your own theme (be sure to change the name in the Description so as to not have confusing duplicates in your menu). Here is the Ubuntu color scheme in action: And a Metro-ish theme I just wrote using the base |
Was just trying to do this exact thing to sync my termoid colors with my konsole colors and @Lateralus138's comment popped up, thanks for the help! This should be in the github's readme, though for me the color schemes were found in |
No problem, glad I could help! |
I'd love to use my very own color scheme with this widget
The text was updated successfully, but these errors were encountered: