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