status-desktop/ui/imports/Themes/DarkTheme.qml

33 lines
1.1 KiB
QML
Raw Normal View History

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: "#758EF0"
property color transparent: "#00000000"
property color darkGrey: "#838C91"
property color lightBlueText: "#8f9fec"
property color darkBlue: "#3c55c9"
property color darkBlueBtn: "#5a70dd"
property color red: "#FC5F5F"
property color lightRed: "#FFEAEE"
property color green: "#4EBC60"
property color background: "#141414"
property color border: "#252528"
property color textColor: white
property color currentUserTextColor: white
property color secondaryBackground: "#23252F"
property color inputBackground: secondaryBackground
property color inputColor: darkGrey
property color modalBackground: background
property color backgroundHover: "#252528"
property color secondaryText: darkGrey
property color secondaryHover: Qt.rgba(255, 255, 255, 0.1)
property color danger: red
}