33 lines
1.0 KiB
QML
33 lines
1.0 KiB
QML
import QtQuick 2.13
|
|
import "."
|
|
|
|
Theme {
|
|
property color white: "#FFFFFF"
|
|
property color white2: "#FCFCFC"
|
|
property color black: "#000000"
|
|
property color grey: "#EEF2F5"
|
|
property color lightBlue: "#ECEFFC"
|
|
property color blue: "#4360DF"
|
|
property color transparent: "#00000000"
|
|
property color darkGrey: "#939BA1"
|
|
property color lightBlueText: "#8f9fec"
|
|
property color darkBlue: "#3c55c9"
|
|
property color darkBlueBtn: "#5a70dd"
|
|
property color red: "#FF2D55"
|
|
property color lightRed: "#FFEAEE"
|
|
property color green: "#4EBC60"
|
|
|
|
property color background: white
|
|
property color border: grey
|
|
property color textColor: black
|
|
property color currentUserTextColor: white
|
|
property color secondaryBackground: lightBlue
|
|
property color inputBackground: grey
|
|
property color inputColor: black
|
|
property color modalBackground: white2
|
|
property color backgroundHover: grey
|
|
property color secondaryText: darkGrey
|
|
property color secondaryHover: Qt.rgba(0, 0, 0, 0.1)
|
|
property color danger: red
|
|
}
|