feat(Core.Theme): expose solid black and white on `ThemePalette`
Status color palettes don't specify a solid black and white that stay black and white in both themes. This commit introduces `black` and `white` as solid colors to `ThemePalette` so they are automatically inherited in all built-in and custom themes.
This commit is contained in:
parent
75e8772500
commit
996ceb2b68
|
@ -22,6 +22,9 @@ QtObject {
|
||||||
property FontLoader monoFontExtraBold
|
property FontLoader monoFontExtraBold
|
||||||
property FontLoader monoFontBlack
|
property FontLoader monoFontBlack
|
||||||
|
|
||||||
|
property color black: getColor('black')
|
||||||
|
property color white: getColor('white')
|
||||||
|
|
||||||
property color baseColor1
|
property color baseColor1
|
||||||
property color baseColor2
|
property color baseColor2
|
||||||
property color baseColor3
|
property color baseColor3
|
||||||
|
|
Loading…
Reference in New Issue