39 lines
1.3 KiB
QML
39 lines
1.3 KiB
QML
pragma Singleton
|
|
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
|
|
property string defaultFont: "Noto Sans"
|
|
property string emojiFont: "Noto Color Emoji"
|
|
property color orangeColor: "#FE5E00"
|
|
property color buttonBackground: "#FE5E00"
|
|
property color buttonInversedBackground: "white"
|
|
property color buttonTextColor: "white"
|
|
property color buttonInversedTextColor: "#FE5E00"
|
|
property color checkboxBorderColor: "#FE5E00"
|
|
property double checkboxBorderWidth: 2
|
|
property int buttonTextSize: 10
|
|
property int tabButtonTextSize: 11
|
|
property color titleColor: "#22334D"
|
|
property color defaultTextColor: "#4E6074"
|
|
property int defaultTextSize: 8
|
|
property color formItemLabelColor: "#4E6074"
|
|
property int formItemLabelSize: 8
|
|
property int formTextInputSize: 10
|
|
property color carouselLightGrayColor: "#DFECF2"
|
|
property color formItemBackgroundColor: "#EDEDED"
|
|
property color comboBoxHighlightColor: "#C0D1D9"
|
|
property color comboBoxHoverColor: "#6C7A87"
|
|
|
|
property color digitInputFocusedColor: "#FE5E00"
|
|
property color digitInputColor: "#6C7A87"
|
|
|
|
property color darkBlueColor: "#22334D"
|
|
property color darkGrayColor: "#4E6074"
|
|
property color grayColor: "#6C7A87"
|
|
property color lightGrayColor: "#EDEDED"
|
|
|
|
property int defaultFontPointSize: 10
|
|
property int title1FontPointSize: 40
|
|
property int title2FontPointSize: 20
|
|
}
|