UI: Add themeID values for colors to style sheets

This commit is contained in:
jp9000
2017-05-13 00:35:28 -07:00
parent d0d9cc4254
commit ee734c17a5
2 changed files with 30 additions and 0 deletions

View File

@@ -508,3 +508,18 @@ QLabel#errorLabel {
color: rgb(192, 0, 0);
font-weight: bold;
}
* [themeID="warning"] {
color: rgb(192, 128, 0);
font-weight: bold;
}
* [themeID="error"] {
color: rgb(192, 0, 0);
font-weight: bold;
}
* [themeID="good"] {
color: rgb(0, 192, 0);
font-weight: bold;
}

View File

@@ -73,3 +73,18 @@ QLabel#errorLabel {
color: rgb(192, 0, 0);
font-weight: bold;
}
* [themeID="warning"] {
color: rgb(192, 128, 0);
font-weight: bold;
}
* [themeID="error"] {
color: rgb(192, 0, 0);
font-weight: bold;
}
* [themeID="good"] {
color: rgb(0, 128, 0);
font-weight: bold;
}