2020-07-02 11:14:31 -04:00
|
|
|
import QtQuick 2.13
|
|
|
|
import "."
|
|
|
|
|
|
|
|
Theme {
|
2021-03-16 15:19:48 -04:00
|
|
|
property string name: "light"
|
|
|
|
|
2020-07-02 11:14:31 -04:00
|
|
|
property color white: "#FFFFFF"
|
|
|
|
property color white2: "#FCFCFC"
|
|
|
|
property color black: "#000000"
|
|
|
|
property color grey: "#EEF2F5"
|
2021-03-26 13:57:30 -04:00
|
|
|
property color grey1: "#F0F2F5"
|
|
|
|
property color grey2: "#F6F8FA"
|
|
|
|
property color grey3: "#E9EDF1"
|
2021-03-17 10:16:30 +01:00
|
|
|
property color midGrey: "#7f8990"
|
2020-09-29 11:06:57 +02:00
|
|
|
property color lightGrey: "#ccd0d4"
|
2020-07-02 11:14:31 -04:00
|
|
|
property color lightBlue: "#ECEFFC"
|
2021-03-26 13:57:30 -04:00
|
|
|
property color translucentBlue: "#1a4360df"
|
2020-08-05 08:38:45 -04:00
|
|
|
property color cyan: "#00FFFF"
|
2020-07-02 11:14:31 -04:00
|
|
|
property color blue: "#4360DF"
|
2020-08-25 13:15:18 +02:00
|
|
|
property color darkAccentBlue: "#2946C4"
|
2020-07-02 11:14:31 -04:00
|
|
|
property color transparent: "#00000000"
|
|
|
|
property color darkGrey: "#939BA1"
|
2020-09-22 10:30:49 -04:00
|
|
|
property color lighterDarkGrey: "#b3bec6"
|
2020-07-02 11:14:31 -04:00
|
|
|
property color lightBlueText: "#8f9fec"
|
|
|
|
property color darkBlue: "#3c55c9"
|
|
|
|
property color darkBlueBtn: "#5a70dd"
|
|
|
|
property color red: "#FF2D55"
|
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 tenPercentBlack: Qt.rgba(0, 0, 0, 0.1)
|
|
|
|
property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1)
|
2020-07-15 12:19:25 -04:00
|
|
|
|
2020-07-13 14:45:54 -04:00
|
|
|
property color background: white
|
2021-04-13 17:24:07 +02:00
|
|
|
property color appBarDividerColor: darkGrey
|
2020-07-13 14:45:54 -04:00
|
|
|
property color border: grey
|
2020-08-06 17:25:53 +10:00
|
|
|
property color borderSecondary: tenPercentBlack
|
|
|
|
property color borderTertiary: blue
|
2021-04-27 14:02:45 -04:00
|
|
|
property color separator: grey
|
2020-07-13 14:45:54 -04:00
|
|
|
property color textColor: black
|
2020-08-06 17:25:53 +10:00
|
|
|
property color textColorTertiary: blue
|
2021-05-05 14:23:43 -04:00
|
|
|
property color linkColor: blue
|
2020-07-13 14:45:54 -04:00
|
|
|
property color currentUserTextColor: white
|
|
|
|
property color secondaryBackground: lightBlue
|
2020-07-22 16:16:06 -04:00
|
|
|
property color inputBackground: grey
|
2020-08-20 14:45:29 +10:00
|
|
|
property color inputBorderFocus: blue
|
2021-03-26 13:57:30 -04:00
|
|
|
property color secondaryMenuBorder: grey3
|
2020-07-22 16:16:06 -04:00
|
|
|
property color inputColor: black
|
2020-07-13 14:45:54 -04:00
|
|
|
property color modalBackground: white2
|
2020-07-30 15:18:54 +10:00
|
|
|
property color backgroundHover: grey
|
2021-03-26 13:57:30 -04:00
|
|
|
property color menuBackgroundActive: grey3
|
|
|
|
property color menuBackgroundHover: grey1
|
2021-02-18 14:59:31 -05:00
|
|
|
property color backgroundHoverLight: grey
|
2020-07-30 15:18:54 +10:00
|
|
|
property color secondaryText: darkGrey
|
2020-08-06 17:25:53 +10:00
|
|
|
property color secondaryHover: tenPercentBlack
|
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: white
|
|
|
|
property color backgroundTertiary: tenPercentBlue
|
2020-09-17 16:40:41 +10:00
|
|
|
property color pillButtonTextColor: white
|
2020-12-02 12:53:04 +02:00
|
|
|
property color chatReplyCurrentUser: darkGrey
|
2020-11-17 14:07:01 +11:00
|
|
|
property color codeBackground: "#2E386B"
|
2021-01-14 03:04:20 +04:00
|
|
|
property color primarySelectionColor: "#b4c8ff"
|
2021-01-25 15:50:42 -05:00
|
|
|
property color emojiReactionBackground: "#e2e6e9"
|
|
|
|
property color emojiReactionBackgroundHovered: "#d7dadd"
|
2021-02-02 11:54:29 -05:00
|
|
|
property color emojiReactionActiveBackgroundHovered: "#cbd5f1"
|
2021-02-01 13:40:55 -05:00
|
|
|
property color mentionColor: "#0DA4C9"
|
2021-02-18 14:59:31 -05:00
|
|
|
property color mentionBgColor: "#1a07bce9"
|
2021-05-07 09:40:23 +10:00
|
|
|
property color mentionBgHoverColor: "#4d07bce9"
|
2021-02-18 14:59:31 -05:00
|
|
|
property color mentionMessageColor: "#1a07bce9"
|
|
|
|
property color mentionMessageHoverColor: "#3307bce9"
|
2021-03-16 15:19:48 -04:00
|
|
|
property color replyBackground: "#d7dadd"
|
2021-03-26 13:57:30 -04:00
|
|
|
property color mainMenuBackground: grey1
|
|
|
|
property color secondaryMenuBackground: grey2
|
|
|
|
property color tabButtonBg: translucentBlue
|
2020-08-25 11:00:03 +02:00
|
|
|
|
|
|
|
property color buttonForegroundColor: blue
|
2021-03-26 13:57:30 -04:00
|
|
|
property color buttonBackgroundColor: translucentBlue
|
|
|
|
property color buttonBackgroundColorHover: "#334360df"
|
2020-09-28 10:21:40 -04:00
|
|
|
property color buttonSecondaryColor: darkGrey
|
|
|
|
property color buttonDisabledForegroundColor: buttonSecondaryColor
|
2020-08-25 11:00:03 +02:00
|
|
|
property color buttonDisabledBackgroundColor: grey
|
2021-03-26 13:57:30 -04:00
|
|
|
property color buttonWarnBackgroundColor: "#1aff2d55"
|
2021-03-16 15:19:48 -04:00
|
|
|
property color buttonOutlineHoveredWarnBackgroundColor: "#1affeaee"
|
2021-03-26 13:57:30 -04:00
|
|
|
property color buttonHoveredWarnBackgroundColor: "#33ff2d55"
|
2021-01-27 09:32:18 +01:00
|
|
|
property color buttonHoveredBackgroundColor: blue
|
2020-08-25 13:15:18 +02:00
|
|
|
|
2021-03-17 10:16:30 +01:00
|
|
|
property color contextMenuButtonForegroundColor: black
|
|
|
|
property color contextMenuButtonBackgroundHoverColor: Qt.hsla(black.hslHue, black.hslSaturation, black.hslLightness, 0.1)
|
|
|
|
|
2021-05-25 15:34:46 -04:00
|
|
|
property color pinnedMessageBorder: "#FE8F59"
|
|
|
|
property color pinnedMessageBackground: "#1aFF9F0F"
|
|
|
|
property color pinnedMessageBackgroundHovered: "#33FF9F0F"
|
2021-05-25 15:38:18 -04:00
|
|
|
property color pinnedRectangleBackground: "#1aFE8F59"
|
2021-05-25 15:34:46 -04:00
|
|
|
|
2020-08-25 13:15:18 +02:00
|
|
|
property color roundedButtonForegroundColor: buttonForegroundColor
|
2020-08-25 11:00:03 +02:00
|
|
|
property color roundedButtonBackgroundColor: secondaryBackground
|
2021-03-26 13:57:30 -04:00
|
|
|
property color roundedButtonSecondaryForegroundColor: grey2
|
2020-08-25 13:15:18 +02:00
|
|
|
property color roundedButtonSecondaryBackgroundColor: buttonForegroundColor
|
|
|
|
property color roundedButtonSecondaryHoveredBackgroundColor: darkAccentBlue
|
|
|
|
property color roundedButtonDisabledForegroundColor: buttonDisabledForegroundColor
|
|
|
|
property color roundedButtonDisabledBackgroundColor: buttonDisabledBackgroundColor
|
2021-03-26 13:57:30 -04:00
|
|
|
property color roundedButtonSecondaryDisabledForegroundColor: grey2
|
2020-08-25 13:15:18 +02:00
|
|
|
property color roundedButtonSecondaryDisabledBackgroundColor: buttonDisabledForegroundColor
|
2021-01-19 16:26:34 +01:00
|
|
|
property color tooltipBackgroundColor: black
|
|
|
|
property color tooltipForegroundColor: white
|
2021-04-13 17:42:43 +02:00
|
|
|
property color chatInfoButtonBackgroundHoverColor: grey1
|
2021-03-16 15:19:48 -04:00
|
|
|
|
|
|
|
property var accountColors: [
|
2021-03-26 13:57:30 -04:00
|
|
|
blue,
|
2021-03-16 15:19:48 -04:00
|
|
|
"#9B832F",
|
|
|
|
"#D37EF4",
|
|
|
|
"#1D806F",
|
|
|
|
"#FA6565",
|
|
|
|
"#7CDA00",
|
|
|
|
"#887Af9",
|
|
|
|
"#8B3131"
|
|
|
|
]
|
2020-07-02 11:14:31 -04:00
|
|
|
}
|