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"
|
2021-02-18 19:07:23 +00:00
|
|
|
property color lightGrey: "#7A7A7A"
|
|
|
|
property color darkGrey: "#373737"
|
|
|
|
property color evenDarkerGrey: "#4b4b4b"
|
2020-07-01 17:35:57 +00:00
|
|
|
property color lightBlue: "#ECEFFC"
|
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)
|
|
|
|
property color tenPercentBlue: Qt.rgba(67, 96, 223, 0.1)
|
2020-08-05 12:38:45 +00:00
|
|
|
|
2021-02-18 19:07:23 +00:00
|
|
|
property color background: "#212121"
|
|
|
|
property color border: darkGrey
|
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
|
2021-02-18 19:07:23 +00:00
|
|
|
property color secondaryBackground: "#353a4d"
|
|
|
|
property color inputBackground: darkGrey
|
2020-08-20 04:45:29 +00:00
|
|
|
property color inputBorderFocus: blue
|
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-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
|
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
|
2021-01-04 18:24:49 +00:00
|
|
|
property color chatReplyCurrentUser: lightGrey
|
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: "#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"
|
|
|
|
property color mentionMessageColor: "#1a0da4c9"
|
|
|
|
property color mentionMessageHoverColor: "#330da4c9"
|
2020-08-25 09:00:03 +00:00
|
|
|
|
|
|
|
property color buttonForegroundColor: blue
|
|
|
|
property color buttonBackgroundColor: secondaryBackground
|
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-01-13 20:26:30 +00:00
|
|
|
property color buttonWarnBackgroundColor: "#FFEAEE"
|
2021-01-28 16:16:16 +00:00
|
|
|
property color buttonHoveredWarnBackgroundColor: red
|
2021-01-27 08:32:18 +00:00
|
|
|
property color buttonHoveredBackgroundColor: blue
|
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
|
2021-01-19 15:26:34 +00:00
|
|
|
property color tooltipBackgroundColor: white
|
|
|
|
property color tooltipForegroundColor: black
|
2020-07-01 17:35:57 +00:00
|
|
|
}
|