24 lines
693 B
QML
24 lines
693 B
QML
pragma Singleton
|
|
import QtQuick 2.12
|
|
|
|
QtObject {
|
|
property color labelTextColor: "#232323"
|
|
property color descriptionTextColor: "#757575"
|
|
property color alternativeTextColor: "#FCFCFC"
|
|
|
|
property color backgroundColor: "#EEEEEE"
|
|
property color controlBackgroundColor: "#FCFCFC"
|
|
|
|
property color borderColor: "#D0D0D0"
|
|
|
|
property color blueButtonColor: "#3069FE"
|
|
property color greenButtonColor: "#4FBA5A"
|
|
property color redButtonColor: "#E74245"
|
|
property color yellowButtonColor: "#F4BB44"
|
|
|
|
property color infoColor: "#E2EAFF"
|
|
property color goodColor: "#C4FFCA"
|
|
property color warningColor: "#FEFBC6"
|
|
property color errorColor: "#FFEDE3"
|
|
}
|