28 lines
742 B
Text
28 lines
742 B
Text
% ================== testTheme.txt ==================
|
|
|
|
$accentColor = Color(rgba(255, 0, 255, 255))
|
|
|
|
% Window
|
|
window.backgroundColor = Color(rgba(40, 0, 0, 255))
|
|
|
|
% Label
|
|
label.textColor = $accentColor
|
|
label.backgroundColor = Color(#000000FF)
|
|
label.borderColor = $accentColor
|
|
label.fontSize = 30
|
|
label.borderRadius = 20
|
|
label.borderWidth = 2
|
|
label.showBackground = true
|
|
label.showBorder = true
|
|
label.padding = Rect(15, 15, 15, 15)
|
|
|
|
% Format:
|
|
% @ID:QUALIFIER PROPERTY = VALUE
|
|
|
|
|
|
@testLabel label.textColor = Color(#004000FF)
|
|
@testLabel:hover label.textColor = Color(#000040FF)
|
|
@testLabel:hover label.backgroundColor = Color(#400040FF)
|
|
@testWindow window.backgroundColor = Color(#004000FF)
|
|
|
|
% ===================================================
|