2017-12-05 20:53:47 +00:00
|
|
|
pragma Singleton
|
|
|
|
import QtQml 2.0
|
|
|
|
|
|
|
|
QtObject
|
|
|
|
{
|
|
|
|
readonly property int margin: 8
|
|
|
|
readonly property int roundRadius: 6
|
|
|
|
|
|
|
|
readonly property int inset: 20
|
|
|
|
readonly property int strutSize: 50
|
|
|
|
|
|
|
|
readonly property string frameColor: "#68A6E1"
|
|
|
|
readonly property string minorFrameColor: "#9f9f9f"
|
|
|
|
|
|
|
|
readonly property string themeColor: "#1b7ad3"
|
|
|
|
readonly property string activeColor: Qt.darker(themeColor)
|
|
|
|
|
|
|
|
readonly property string inactiveThemeColor: "#9f9f9f"
|
2017-12-15 15:42:36 +00:00
|
|
|
readonly property string disabledThemeColor: disabledTextColor
|
2017-12-05 20:53:47 +00:00
|
|
|
|
|
|
|
readonly property string baseTextColor: "#3f3f3f"
|
2018-03-02 21:09:10 +00:00
|
|
|
|
|
|
|
readonly property int baseFontPixelSize: 12
|
2017-12-15 15:42:36 +00:00
|
|
|
readonly property string disabledTextColor: "#5f5f5f"
|
2017-12-05 20:53:47 +00:00
|
|
|
}
|
|
|
|
|