splitted the code base into more components and implemented safety measures to Crypto.qml, also added missing themes and removed hardcoded values
This commit is contained in:
@@ -6,7 +6,7 @@ QtObject {
|
||||
id: theme
|
||||
|
||||
// ── Wallpaper ──────────────────────────────────────────────────────────────
|
||||
readonly property string wallpaper: Quickshell.env("HOME") + "/.config/quickshell/wallpapers/Aaah.png"
|
||||
readonly property string wallpaper: Quickshell.env("HOME") + "/.config/quickshell/wallpapers/tropicalnight.png"
|
||||
|
||||
// ── Base Backgrounds ───────────────────────────────────────────────────────
|
||||
readonly property color bg: "#fa161a22" // Deep navy-black from silhouettes
|
||||
@@ -18,9 +18,10 @@ QtObject {
|
||||
readonly property color separator: "#334a5d6e" // Muted sky blue-gray
|
||||
|
||||
// ── Text ──────────────────────────────────────────────────────────────────
|
||||
readonly property color textMain: "#ffe8eef2" // Bright moonlit white
|
||||
readonly property color textDim: "#ffdfe6ea" // Lighter (closer to white)
|
||||
readonly property color todayText: "#ffffffff"
|
||||
// reduced whiteness — cooler/dimmer grays for primary text
|
||||
readonly property color textMain: "#ffbfc6c9" // less-white moonlit gray
|
||||
readonly property color textDim: "#ff92979b" // dimmer gray
|
||||
readonly property color todayText: "#ffccd1d4" // subdued off-white
|
||||
|
||||
// ── Accent & Borders ──────────────────────────────────────────────────────
|
||||
readonly property color accent: "#ff89b4fa" // Summer sky blue (Main Accent)
|
||||
@@ -29,7 +30,7 @@ QtObject {
|
||||
readonly property color borderPopup: "transparent"
|
||||
readonly property color borderToday: accent
|
||||
|
||||
// ── Logo Module ────────────────────────────────────────────────────────
|
||||
// ── Logo Module ───────────────────────────────────────────────────────
|
||||
readonly property color logoBg: bgPanel
|
||||
readonly property color logoBgHover: "#22ffffff"
|
||||
readonly property color logoBorder: border
|
||||
@@ -40,8 +41,6 @@ QtObject {
|
||||
// ── Stats Module ──────────────────────────────────────────────────────────
|
||||
readonly property color statsBg: bgPanel
|
||||
readonly property color statsBorder: border
|
||||
readonly property color statsText: "#ffdfe6ea"
|
||||
readonly property color statsRingColor: accent
|
||||
readonly property color statsCpuColor: "#ff89b4fa"
|
||||
readonly property color statsMemColor: "#ffb4c9a1" // Soft moonlit green
|
||||
readonly property color statsDiskColor: "#ff94e2d5"
|
||||
@@ -87,7 +86,7 @@ QtObject {
|
||||
readonly property color batPopupSeparator: separator
|
||||
readonly property color batPopupHeader: accent
|
||||
readonly property color batPopupText: textMain
|
||||
readonly property color batPopupDim: "#ffdfe6ea"
|
||||
readonly property color batPopupDim: "#ff92979b"
|
||||
readonly property color batProgressTrack: separator
|
||||
readonly property color batProfileActiveText: bg
|
||||
|
||||
@@ -102,7 +101,7 @@ QtObject {
|
||||
readonly property color netPopupSeparator: separator
|
||||
readonly property color netPopupHeader: accent
|
||||
readonly property color netPopupText: textMain
|
||||
readonly property color netPopupDim: "#ffdfe6ea"
|
||||
readonly property color netPopupDim: "#ff92979b"
|
||||
readonly property color netFieldBg: "#22ffffff"
|
||||
readonly property color netCancelBgHover: "#22ffffff"
|
||||
readonly property color netConnectText: "#ff0c0e12"
|
||||
@@ -121,10 +120,10 @@ QtObject {
|
||||
readonly property color calSeparator: separator
|
||||
readonly property color clockPopupHeader: accent
|
||||
readonly property color clockPopupText: textMain
|
||||
readonly property color clockPopupDim: "#ffdfe6ea"
|
||||
readonly property color clockPopupDim: "#ff92979b"
|
||||
readonly property color clockPopupDate: textMain
|
||||
readonly property color clockPopupUtc: "#ffdfe6ea"
|
||||
readonly property color calArrowIcon: "#ffdfe6ea"
|
||||
readonly property color clockPopupUtc: "#ff92979b"
|
||||
readonly property color calArrowIcon: "#ff92979b"
|
||||
readonly property color calArrowIconHover: accent
|
||||
readonly property color calArrowBg: "transparent"
|
||||
readonly property color calArrowBgHover: "#2289b4fa"
|
||||
@@ -138,7 +137,7 @@ QtObject {
|
||||
readonly property color wsHoverBg: "#334a5d6e"
|
||||
readonly property color wsActiveText: "#ff0c0e12"
|
||||
readonly property color wsInactiveText: textMain
|
||||
readonly property color wsHoverText: "#ffffffff"
|
||||
readonly property color wsHoverText: "#ffccd1d4"
|
||||
|
||||
// ── Tray Module ────────────────────────────────────────────────────────────
|
||||
readonly property color trayBg: bgPanel
|
||||
@@ -151,7 +150,7 @@ QtObject {
|
||||
readonly property color trayMenuBg: bgPopup
|
||||
readonly property color trayMenuBorder: borderPopup
|
||||
readonly property color trayMenuText: textMain
|
||||
readonly property color trayMenuDim: "#ffdfe6ea"
|
||||
readonly property color trayMenuDim: "#ff92979b"
|
||||
readonly property color trayMenuHover: "#2289b4fa"
|
||||
readonly property color trayMenuCheck: accent
|
||||
readonly property color trayMenuSeparator: separator
|
||||
@@ -163,11 +162,11 @@ QtObject {
|
||||
readonly property color launcherInputBorderFocus: accent
|
||||
readonly property color launcherPill: "#444a5d6e"
|
||||
readonly property color launcherText: textMain
|
||||
readonly property color launcherDim: "#ffdfe6ea"
|
||||
readonly property color launcherDim: "#ff92979b"
|
||||
readonly property color launcherAccent: accent
|
||||
readonly property color launcherHover: "#2289b4fa"
|
||||
readonly property color launcherSelected: "#4489b4fa"
|
||||
readonly property color launcherModeActiveText: "#ffffffff"
|
||||
readonly property color launcherModeActiveText: "#ffccd1d4"
|
||||
readonly property color launcherModeActiveBg: accent
|
||||
|
||||
// ── Status Colors ──────────────────────────────────────────────────────────
|
||||
@@ -184,7 +183,7 @@ QtObject {
|
||||
readonly property color notifIcon: textMain
|
||||
readonly property color notifIconActive: accent
|
||||
readonly property color notifBadgeBg: statusErr
|
||||
readonly property color notifBadgeText: "#ffffffff"
|
||||
readonly property color notifBadgeText: "#ffccd1d4"
|
||||
readonly property color notifSeparator: separator
|
||||
readonly property color notifDnd: separator
|
||||
|
||||
@@ -193,13 +192,13 @@ QtObject {
|
||||
readonly property color notifToastBgHover: "#22ffffff"
|
||||
readonly property color notifToastBorder: borderPopup
|
||||
readonly property color notifToastText: textMain
|
||||
readonly property color notifToastDim: "#ffdfe6ea"
|
||||
readonly property color notifToastDim: "#ff92979b"
|
||||
readonly property color notifToastAppName: "#ff89b4fa"
|
||||
|
||||
// ── Urgency colours ───────────────────────────────────────────────────────
|
||||
readonly property color notifUrgencyCritical: statusErr
|
||||
readonly property color notifUrgencyNormal: statusInfo
|
||||
readonly property color notifUrgencyLow: "#ffdfe6ea"
|
||||
readonly property color notifUrgencyLow: "#ff92979b"
|
||||
|
||||
// ── Progress bar ───────────────────────────────────────────────────────────
|
||||
readonly property color notifProgressBg: "#22ffffff"
|
||||
@@ -209,7 +208,7 @@ QtObject {
|
||||
readonly property color notifHistoryBg: bgPopup
|
||||
readonly property color notifHistoryBorder: borderPopup
|
||||
readonly property color notifHistoryHover: "#1189b4fa"
|
||||
readonly property color notifHistoryEmpty: "#ffdfe6ea"
|
||||
readonly property color notifHistoryEmpty: "#ff92979b"
|
||||
|
||||
// ── BgDate Module ─────────────────────────────────────────────────────────
|
||||
readonly property color bgDateText: accent
|
||||
@@ -222,7 +221,7 @@ QtObject {
|
||||
readonly property color cryptoBorder: border
|
||||
readonly property color cryptoBorderHover: accent
|
||||
readonly property color cryptoIcon: accent
|
||||
readonly property color cryptoLabel: "#ffdfe6ea"
|
||||
readonly property color cryptoLabel: "#ff92979b"
|
||||
readonly property color cryptoValue: textMain
|
||||
readonly property color cryptoUp: "#ffb4c9a1"
|
||||
readonly property color cryptoDown: "#fff38ba8"
|
||||
@@ -230,13 +229,19 @@ QtObject {
|
||||
readonly property color cryptoPopupBorder: borderPopup
|
||||
readonly property color cryptoPopupHeader: accent
|
||||
readonly property color cryptoPopupText: textMain
|
||||
readonly property color cryptoPopupDim: "#ffdfe6ea"
|
||||
readonly property color cryptoPopupDim: "#ff92979b"
|
||||
|
||||
readonly property color cryptoUpBg: Qt.rgba(cryptoUp.r, cryptoUp.g, cryptoUp.b, 0.13)
|
||||
readonly property color cryptoDownBg: Qt.rgba(cryptoDown.r, cryptoDown.g, cryptoDown.b, 0.13)
|
||||
readonly property color cryptoChipRemoveBg: Qt.rgba(cryptoDown.r, cryptoDown.g, cryptoDown.b, 0.27)
|
||||
readonly property color cryptoApplyIdleBg: Qt.rgba(accent.r, accent.g, accent.b, 0.20)
|
||||
|
||||
readonly property color cryptoFieldBg: "#15ffffff"
|
||||
readonly property color cryptoFieldBgFocus: "#22ffffff"
|
||||
readonly property color cryptoRangeTrack: "#1affffff"
|
||||
readonly property color cryptoTextOnAccent: "#ff0c0e12"
|
||||
readonly property color cryptoPlaceholder: Qt.rgba(textDim.r, textDim.g, textDim.b, 0.33)
|
||||
|
||||
// ── Polkit Dialog ──────────────────────────────────────────────────────────
|
||||
readonly property color polkitOverlayBg: "#bb000000"
|
||||
readonly property color polkitCardBg: bgPopup
|
||||
@@ -245,9 +250,9 @@ QtObject {
|
||||
readonly property color polkitIconBorder: "#4489b4fa"
|
||||
readonly property color polkitIconColor: accent
|
||||
readonly property color polkitTitle: textMain
|
||||
readonly property color polkitMessage: "#cce8eef2"
|
||||
readonly property color polkitMessage: "#c2c8cb"
|
||||
readonly property color polkitPillBg: "#1a4a5d6e"
|
||||
readonly property color polkitPillText: "#ffdfe6ea"
|
||||
readonly property color polkitPillText: "#ff92979b"
|
||||
readonly property color polkitDivider: "#334a5d6e"
|
||||
readonly property color polkitSuppErrBg: "#1af38ba8"
|
||||
readonly property color polkitSuppErrBorder: "#44f38ba8"
|
||||
@@ -256,11 +261,11 @@ QtObject {
|
||||
readonly property color polkitSuppOkBorder: "#44b4c9a1"
|
||||
readonly property color polkitSuppOkText: statusOk
|
||||
readonly property color polkitFieldBg: "#44080a0d"
|
||||
readonly property color polkitFieldBorder: "#22ffffff"
|
||||
readonly property color polkitFieldBorder: "#22929297"
|
||||
readonly property color polkitFieldBorderFocus: accent
|
||||
readonly property color polkitUserLabel: "#ffdfe6ea"
|
||||
readonly property color polkitUserLabel: "#ff92979b"
|
||||
readonly property color polkitUserValue: accent
|
||||
readonly property color polkitInputPrompt: "#88dfe6ea"
|
||||
readonly property color polkitInputPrompt: "#8892979b"
|
||||
readonly property color polkitInputText: textMain
|
||||
readonly property color polkitInputSelection: "#5589b4fa"
|
||||
readonly property color polkitInputSelectedText: bg
|
||||
@@ -272,5 +277,5 @@ QtObject {
|
||||
readonly property color polkitCancelBg: "#0dffffff"
|
||||
readonly property color polkitCancelBgHover: "#22ffffff"
|
||||
readonly property color polkitCancelBorder: "#22ffffff"
|
||||
readonly property color polkitCancelText: "#cce8eef2"
|
||||
readonly property color polkitCancelText: "#c2c8cb"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user