2020-07-01 17:35:57 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import "."
|
|
|
|
|
|
|
|
Theme {
|
2020-07-13 18:45:54 +00:00
|
|
|
property color white: "#FFFFFF"
|
2020-07-01 17:35:57 +00:00
|
|
|
property color white2: "#FCFCFC"
|
|
|
|
property color black: "#000000"
|
2020-08-06 07:25:53 +00:00
|
|
|
property color almostBlack: "#141414"
|
2020-07-01 17:35:57 +00:00
|
|
|
property color grey: "#EEF2F5"
|
|
|
|
property color lightBlue: "#ECEFFC"
|
2020-08-05 12:38:45 +00:00
|
|
|
property color cyan: "#00FFFF"
|
2020-07-22 20:16:06 +00:00
|
|
|
property color blue: "#758EF0"
|
2020-08-25 11:15:18 +00:00
|
|
|
property color darkAccentBlue: "#2946C4"
|
2020-07-01 17:35:57 +00:00
|
|
|
property color transparent: "#00000000"
|
2020-07-22 20:16:06 +00:00
|
|
|
property color darkGrey: "#838C91"
|
2020-09-17 06:40:41 +00:00
|
|
|
property color darkerGrey: "#252528"
|
2020-07-01 17:35:57 +00:00
|
|
|
property color lightBlueText: "#8f9fec"
|
|
|
|
property color darkBlue: "#3c55c9"
|
|
|
|
property color darkBlueBtn: "#5a70dd"
|
2020-07-22 20:16:06 +00:00
|
|
|
property color red: "#FC5F5F"
|
2020-06-29 22:02:19 +00:00
|
|
|
property color lightRed: "#FFEAEE"
|
|
|
|
property color green: "#4EBC60"
|
2020-08-05 12:38:45 +00:00
|
|
|
property color turquoise: "#007b7d"
|
2020-08-06 07:25:53 +00:00
|
|
|
property color tenPercentWhite: Qt.rgba(255, 255, 255, 0.1)
|
|
|
|
property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1)
|
2020-08-05 12:38:45 +00:00
|
|
|
|
2020-08-06 07:25:53 +00:00
|
|
|
property color background: almostBlack
|
2020-09-17 06:40:41 +00:00
|
|
|
property color border: darkerGrey
|
2020-08-06 07:25:53 +00:00
|
|
|
property color borderSecondary: tenPercentWhite
|
|
|
|
property color borderTertiary: blue
|
2020-07-13 18:45:54 +00:00
|
|
|
property color textColor: white
|
2020-08-06 07:25:53 +00:00
|
|
|
property color textColorTertiary: blue
|
2020-07-13 18:45:54 +00:00
|
|
|
property color currentUserTextColor: white
|
|
|
|
property color secondaryBackground: "#23252F"
|
2020-07-22 20:16:06 +00:00
|
|
|
property color inputBackground: secondaryBackground
|
2020-08-20 04:45:29 +00:00
|
|
|
property color inputBorderFocus: blue
|
2020-07-22 20:16:06 +00:00
|
|
|
property color inputColor: darkGrey
|
2020-07-13 18:45:54 +00:00
|
|
|
property color modalBackground: background
|
2020-09-17 06:40:41 +00:00
|
|
|
property color backgroundHover: darkerGrey
|
2020-07-30 05:18:54 +00:00
|
|
|
property color secondaryText: darkGrey
|
2020-08-06 07:25:53 +00:00
|
|
|
property color secondaryHover: tenPercentWhite
|
2020-09-14 14:58:21 +00:00
|
|
|
property color primary: blue
|
2020-07-30 05:18:54 +00:00
|
|
|
property color danger: red
|
2020-09-14 14:58:21 +00:00
|
|
|
property color success: green
|
2020-08-06 07:25:53 +00:00
|
|
|
property color primaryMenuItemHover: blue
|
|
|
|
property color primaryMenuItemTextHover: almostBlack
|
|
|
|
property color backgroundTertiary: tenPercentBlue
|
2020-09-17 06:40:41 +00:00
|
|
|
property color pillButtonTextColor: almostBlack
|
2020-08-25 09:00:03 +00:00
|
|
|
|
|
|
|
property color buttonForegroundColor: blue
|
|
|
|
property color buttonBackgroundColor: secondaryBackground
|
2020-08-25 11:15:18 +00:00
|
|
|
property color buttonDisabledForegroundColor: darkGrey
|
2020-09-17 06:40:41 +00:00
|
|
|
property color buttonDisabledBackgroundColor: darkerGrey
|
2020-08-25 11:15:18 +00:00
|
|
|
|
2020-08-25 09:00:03 +00:00
|
|
|
property color roundedButtonForegroundColor: white
|
|
|
|
property color roundedButtonBackgroundColor: secondaryBackground
|
2020-08-25 11:15:18 +00:00
|
|
|
property color roundedButtonSecondaryForegroundColor: white
|
|
|
|
property color roundedButtonSecondaryBackgroundColor: buttonForegroundColor
|
|
|
|
property color roundedButtonSecondaryHoveredBackgroundColor: darkAccentBlue
|
|
|
|
property color roundedButtonDisabledForegroundColor: buttonDisabledForegroundColor
|
|
|
|
property color roundedButtonDisabledBackgroundColor: buttonDisabledBackgroundColor
|
|
|
|
property color roundedButtonSecondaryDisabledForegroundColor: roundedButtonForegroundColor
|
|
|
|
property color roundedButtonSecondaryDisabledBackgroundColor: buttonDisabledForegroundColor
|
2020-07-01 17:35:57 +00:00
|
|
|
}
|