mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-28 01:09:19 +00:00
28 lines
No EOL
960 B
QML
28 lines
No EOL
960 B
QML
pragma Singleton
|
|
import QtQuick 2.15
|
|
|
|
QtObject {
|
|
|
|
property string defaultFont: "Noto Sans"
|
|
property color orangeColor: "#FE5E00"
|
|
property color buttonBackground: "#FE5E00"
|
|
property color buttonInversedBackground: "white"
|
|
property color buttonTextColor: "white"
|
|
property color buttonInversedTextColor: "#FE5E00"
|
|
property int buttonTextSize: 10
|
|
property color darkBlueColor: "#22334D"
|
|
property color titleColor: "#22334D"
|
|
property color darkGrayColor: "#4E6074"
|
|
property color defaultTextColor: "#4E6074"
|
|
property int defaultTextSize: 8
|
|
property color formItemLabelColor: "#4E6074"
|
|
property int formItemLabelSize: 8
|
|
property int formTextInputSize: 10
|
|
property color grayColor: "#6C7A87"
|
|
property color lightGrayColor: "#EDEDED"
|
|
property color carouselLightGrayColor: "#DFECF2"
|
|
property color formItemBackgroundColor: "#EDEDED"
|
|
property int defaultFontPointSize: 10
|
|
property int title1FontPointSize: 40
|
|
property int title2FontPointSize: 20
|
|
} |