2020-07-01 17:35:57 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import "."
|
|
|
|
|
|
|
|
Theme {
|
2021-03-16 19:19:48 +00:00
|
|
|
property string name: "dark"
|
|
|
|
|
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"
|
2021-03-26 17:57:30 +00:00
|
|
|
property color grey3: "#E9EDF1"
|
|
|
|
property color graphite2: "#252525"
|
2021-02-18 19:07:23 +00:00
|
|
|
property color lightGrey: "#7A7A7A"
|
2021-03-17 09:16:30 +00:00
|
|
|
property color midGrey: "#7f8990"
|
2021-02-18 19:07:23 +00:00
|
|
|
property color darkGrey: "#373737"
|
|
|
|
property color evenDarkerGrey: "#4b4b4b"
|
2020-07-01 17:35:57 +00:00
|
|
|
property color lightBlue: "#ECEFFC"
|
2021-03-26 17:57:30 +00:00
|
|
|
property color translucentBlue: "#33869eff"
|
2020-08-05 12:38:45 +00:00
|
|
|
property color cyan: "#00FFFF"
|
2021-02-18 19:07:23 +00:00
|
|
|
property color blue: "#88B0FF"
|
2020-08-25 11:15:18 +00:00
|
|
|
property color darkAccentBlue: "#2946C4"
|
2020-07-01 17:35:57 +00:00
|
|
|
property color transparent: "#00000000"
|
|
|
|
property color lightBlueText: "#8f9fec"
|
|
|
|
property color darkBlue: "#3c55c9"
|
|
|
|
property color darkBlueBtn: "#5a70dd"
|
2021-02-18 19:07:23 +00:00
|
|
|
property color red: "#FF5C7B"
|
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)
|
2021-06-29 14:49:32 +00:00
|
|
|
property color fivePercentBlack: "#E5E5E5"
|
2020-08-06 07:25:53 +00:00
|
|
|
property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1)
|
2021-06-30 18:46:26 +00:00
|
|
|
property color orange: "#FFA500"
|
2021-08-03 08:48:06 +00:00
|
|
|
property color yellow: "#FFCA0F"
|
2020-08-05 12:38:45 +00:00
|
|
|
|
2021-03-26 17:57:30 +00:00
|
|
|
property color background: "#2C2C2C"
|
2021-07-29 19:20:15 +00:00
|
|
|
property color dropShadow: "#66000000"
|
2021-04-13 15:24:07 +00:00
|
|
|
property color appBarDividerColor: darkGrey
|
2021-02-18 19:07:23 +00:00
|
|
|
property color border: darkGrey
|
2020-08-06 07:25:53 +00:00
|
|
|
property color borderSecondary: tenPercentWhite
|
|
|
|
property color borderTertiary: blue
|
2021-04-27 18:02:45 +00:00
|
|
|
property color separator: tenPercentWhite
|
2020-07-13 18:45:54 +00:00
|
|
|
property color textColor: white
|
2020-08-06 07:25:53 +00:00
|
|
|
property color textColorTertiary: blue
|
2021-05-05 18:23:43 +00:00
|
|
|
property color linkColor: blue
|
2020-07-13 18:45:54 +00:00
|
|
|
property color currentUserTextColor: white
|
2021-02-18 19:07:23 +00:00
|
|
|
property color secondaryBackground: "#353a4d"
|
|
|
|
property color inputBackground: darkGrey
|
2021-07-08 16:11:55 +00:00
|
|
|
property color secondaryInputBackground: grey
|
|
|
|
property color secondaryInputText: black
|
2020-08-20 04:45:29 +00:00
|
|
|
property color inputBorderFocus: blue
|
2021-03-26 17:57:30 +00:00
|
|
|
property color secondaryMenuBorder: darkGrey
|
2021-02-18 19:07:23 +00:00
|
|
|
property color inputColor: textColor
|
|
|
|
property color modalBackground: darkGrey
|
2020-11-17 19:01:50 +00:00
|
|
|
property color backgroundHover: evenDarkerGrey
|
2021-03-26 17:57:30 +00:00
|
|
|
property color menuBackgroundActive: "#1affffff"
|
|
|
|
property color menuBackgroundHover: "#0dffffff"
|
2021-02-18 19:07:23 +00:00
|
|
|
property color backgroundHoverLight: darkGrey
|
|
|
|
property color secondaryText: lightGrey
|
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
|
2021-07-07 18:37:49 +00:00
|
|
|
property color warning: orange
|
2020-08-06 07:25:53 +00:00
|
|
|
property color primaryMenuItemHover: blue
|
|
|
|
property color primaryMenuItemTextHover: almostBlack
|
|
|
|
property color backgroundTertiary: tenPercentBlue
|
2021-03-16 19:19:48 +00:00
|
|
|
property color pillButtonTextColor: secondaryText
|
2021-01-04 18:24:49 +00:00
|
|
|
property color chatReplyCurrentUser: lightGrey
|
2023-01-09 19:13:19 +00:00
|
|
|
property color codeBackground: graphite2
|
2021-01-13 23:04:20 +00:00
|
|
|
property color primarySelectionColor: "#b4c8ff"
|
2021-01-25 20:50:42 +00:00
|
|
|
property color emojiReactionBackground: "#2d2823"
|
|
|
|
property color emojiReactionBackgroundHovered: "#3a3632"
|
2021-02-02 16:54:29 +00:00
|
|
|
property color emojiReactionActiveBackgroundHovered: "#cbd5f1"
|
2021-02-18 19:07:23 +00:00
|
|
|
property color mentionColor: "#7BE5FF"
|
2021-02-18 19:59:31 +00:00
|
|
|
property color mentionBgColor: "#1a0da4c9"
|
2021-05-06 23:40:23 +00:00
|
|
|
property color mentionBgHoverColor: "#4d0da4c9"
|
2021-02-18 19:59:31 +00:00
|
|
|
property color mentionMessageColor: "#1a0da4c9"
|
|
|
|
property color mentionMessageHoverColor: "#330da4c9"
|
2021-03-16 19:19:48 +00:00
|
|
|
property color replyBackground: "#484848"
|
2021-03-26 17:57:30 +00:00
|
|
|
property color mainMenuBackground: "#212121"
|
|
|
|
property color secondaryMenuBackground: graphite2
|
|
|
|
property color tabButtonBg: translucentBlue
|
2022-02-09 09:43:23 +00:00
|
|
|
|
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: "#4d869eff"
|
2020-09-28 14:21:40 +00:00
|
|
|
property color buttonSecondaryColor: darkGrey
|
2021-02-18 19:07:23 +00:00
|
|
|
property color buttonDisabledForegroundColor: lightGrey
|
|
|
|
property color buttonDisabledBackgroundColor: darkGrey
|
2021-03-26 17:57:30 +00:00
|
|
|
property color buttonWarnBackgroundColor: "#33ff5c7b"
|
2021-03-16 19:19:48 +00:00
|
|
|
property color buttonOutlineHoveredWarnBackgroundColor: "#4dff5c7b"
|
2021-03-26 17:57:30 +00:00
|
|
|
property color buttonHoveredWarnBackgroundColor: "#4dff5c7b"
|
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: midGrey
|
2021-04-13 15:46:40 +00:00
|
|
|
property color contextMenuButtonBackgroundHoverColor: Qt.hsla(white.hslHue, white.hslSaturation, white.hslLightness, 0.05)
|
2021-03-17 09:16:30 +00:00
|
|
|
|
2021-05-25 19:34:46 +00:00
|
|
|
property color pinnedMessageBorder: "#FFA67B"
|
|
|
|
property color pinnedMessageBackground: "#1afe8f59"
|
|
|
|
property color pinnedMessageBackgroundHovered: "#33fe8f59"
|
|
|
|
property color pinnedRectangleBackground: "#1afe8f59"
|
|
|
|
|
2020-08-25 09:00:03 +00:00
|
|
|
property color roundedButtonForegroundColor: white
|
2021-03-26 17:57:30 +00:00
|
|
|
property color roundedButtonBackgroundColor: buttonBackgroundColor
|
2021-03-16 19:19:48 +00:00
|
|
|
property color roundedButtonSecondaryForegroundColor: black
|
2021-03-26 17:57:30 +00:00
|
|
|
property color roundedButtonSecondaryBackgroundColor: blue
|
2021-03-16 19:19:48 +00:00
|
|
|
property color roundedButtonSecondaryHoveredBackgroundColor: "#AAC6FF"
|
2020-08-25 11:15:18 +00:00
|
|
|
property color roundedButtonDisabledForegroundColor: buttonDisabledForegroundColor
|
|
|
|
property color roundedButtonDisabledBackgroundColor: buttonDisabledBackgroundColor
|
2021-03-16 19:19:48 +00:00
|
|
|
property color roundedButtonSecondaryDisabledForegroundColor: black
|
|
|
|
property color roundedButtonSecondaryDisabledBackgroundColor: lightGrey
|
2021-03-26 17:57:30 +00:00
|
|
|
property color tooltipBackgroundColor: black
|
|
|
|
property color tooltipForegroundColor: white
|
2021-04-13 15:42:43 +00:00
|
|
|
property color chatInfoButtonBackgroundHoverColor: Qt.hsla(white.hslHue, white.hslSaturation, white.hslLightness, 0.05)
|
2021-03-16 19:19:48 +00:00
|
|
|
|
|
|
|
property var accountColors: [
|
|
|
|
"#AAC6FF",
|
|
|
|
"#EAD27B",
|
|
|
|
"#E6ABFC",
|
|
|
|
"#10A88E",
|
|
|
|
"#FB8383",
|
|
|
|
"#93DB33",
|
|
|
|
"#ADA3FF",
|
|
|
|
"#AD4343"
|
|
|
|
]
|
2020-07-01 17:35:57 +00:00
|
|
|
}
|