2020-07-01 13:35:57 -04:00
|
|
|
import QtQuick 2.13
|
|
|
|
import "."
|
|
|
|
|
|
|
|
Theme {
|
2020-07-13 14:45:54 -04:00
|
|
|
property color white: "#FFFFFF"
|
2020-07-01 13:35:57 -04:00
|
|
|
property color white2: "#FCFCFC"
|
|
|
|
property color black: "#000000"
|
2020-08-06 17:25:53 +10:00
|
|
|
property color almostBlack: "#141414"
|
2020-07-01 13:35:57 -04:00
|
|
|
property color grey: "#EEF2F5"
|
2020-09-29 11:06:57 +02:00
|
|
|
property color lightGrey: "#ccd0d4"
|
2020-07-01 13:35:57 -04:00
|
|
|
property color lightBlue: "#ECEFFC"
|
2020-08-05 08:38:45 -04:00
|
|
|
property color cyan: "#00FFFF"
|
2020-07-22 16:16:06 -04:00
|
|
|
property color blue: "#758EF0"
|
2020-08-25 13:15:18 +02:00
|
|
|
property color darkAccentBlue: "#2946C4"
|
2020-07-01 13:35:57 -04:00
|
|
|
property color transparent: "#00000000"
|
2020-07-22 16:16:06 -04:00
|
|
|
property color darkGrey: "#838C91"
|
2020-11-17 20:01:50 +01:00
|
|
|
property color evenDarkerGrey: "#252528"
|
2020-07-01 13:35:57 -04:00
|
|
|
property color lightBlueText: "#8f9fec"
|
|
|
|
property color darkBlue: "#3c55c9"
|
|
|
|
property color darkBlueBtn: "#5a70dd"
|
2020-07-22 16:16:06 -04:00
|
|
|
property color red: "#FC5F5F"
|
2020-06-30 08:02:19 +10:00
|
|
|
property color lightRed: "#FFEAEE"
|
|
|
|
property color green: "#4EBC60"
|
2020-08-05 08:38:45 -04:00
|
|
|
property color turquoise: "#007b7d"
|
2020-08-06 17:25:53 +10:00
|
|
|
property color tenPercentWhite: Qt.rgba(255, 255, 255, 0.1)
|
|
|
|
property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1)
|
2020-08-05 08:38:45 -04:00
|
|
|
|
2020-08-06 17:25:53 +10:00
|
|
|
property color background: almostBlack
|
2020-11-17 20:01:50 +01:00
|
|
|
property color border: evenDarkerGrey
|
2020-08-06 17:25:53 +10:00
|
|
|
property color borderSecondary: tenPercentWhite
|
|
|
|
property color borderTertiary: blue
|
2020-07-13 14:45:54 -04:00
|
|
|
property color textColor: white
|
2020-08-06 17:25:53 +10:00
|
|
|
property color textColorTertiary: blue
|
2020-07-13 14:45:54 -04:00
|
|
|
property color currentUserTextColor: white
|
|
|
|
property color secondaryBackground: "#23252F"
|
2020-07-22 16:16:06 -04:00
|
|
|
property color inputBackground: secondaryBackground
|
2020-08-20 14:45:29 +10:00
|
|
|
property color inputBorderFocus: blue
|
2020-07-22 16:16:06 -04:00
|
|
|
property color inputColor: darkGrey
|
2020-07-13 14:45:54 -04:00
|
|
|
property color modalBackground: background
|
2020-11-17 20:01:50 +01:00
|
|
|
property color backgroundHover: evenDarkerGrey
|
2020-07-30 15:18:54 +10:00
|
|
|
property color secondaryText: darkGrey
|
2020-08-06 17:25:53 +10:00
|
|
|
property color secondaryHover: tenPercentWhite
|
2020-09-14 10:58:21 -04:00
|
|
|
property color primary: blue
|
2020-07-30 15:18:54 +10:00
|
|
|
property color danger: red
|
2020-09-14 10:58:21 -04:00
|
|
|
property color success: green
|
2020-08-06 17:25:53 +10:00
|
|
|
property color primaryMenuItemHover: blue
|
|
|
|
property color primaryMenuItemTextHover: almostBlack
|
|
|
|
property color backgroundTertiary: tenPercentBlue
|
2020-09-17 16:40:41 +10:00
|
|
|
property color pillButtonTextColor: almostBlack
|
2021-01-04 13:24:49 -05:00
|
|
|
property color chatReplyCurrentUser: lightGrey
|
2020-11-17 20:01:50 +01:00
|
|
|
property color topBarChatInfoColor: evenDarkerGrey
|
2020-11-17 14:07:01 +11:00
|
|
|
property color codeBackground: "#2E386B"
|
2021-01-14 03:04:20 +04:00
|
|
|
property color primarySelectionColor: "#b4c8ff"
|
2020-08-25 11:00:03 +02:00
|
|
|
|
|
|
|
property color buttonForegroundColor: blue
|
|
|
|
property color buttonBackgroundColor: secondaryBackground
|
2020-09-28 10:21:40 -04:00
|
|
|
property color buttonSecondaryColor: darkGrey
|
|
|
|
property color buttonDisabledForegroundColor: buttonSecondaryColor
|
2020-11-17 20:01:50 +01:00
|
|
|
property color buttonDisabledBackgroundColor: evenDarkerGrey
|
2021-01-14 00:26:30 +04:00
|
|
|
property color buttonWarnBackgroundColor: "#FFEAEE"
|
2020-08-25 13:15:18 +02:00
|
|
|
|
2020-08-25 11:00:03 +02:00
|
|
|
property color roundedButtonForegroundColor: white
|
|
|
|
property color roundedButtonBackgroundColor: secondaryBackground
|
2020-08-25 13:15:18 +02: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
|
2021-01-19 16:26:34 +01:00
|
|
|
property color tooltipBackgroundColor: white
|
|
|
|
property color tooltipForegroundColor: black
|
2020-07-01 13:35:57 -04:00
|
|
|
}
|