162 lines
10 KiB
QML
162 lines
10 KiB
QML
pragma Singleton
|
|
import QtQuick
|
|
import Quickshell
|
|
|
|
QtObject {
|
|
id: theme
|
|
|
|
// ── Wallpaper ──────────────────────────────────────────────────────────────
|
|
// Path updated to reflect the new vibe, though you may need to point this to your actual image
|
|
readonly property string wallpaper: Quickshell.env("HOME") + "/.config/quickshell/wallpapers/metropolitan.jpg"
|
|
|
|
// ── Base Backgrounds ───────────────────────────────────────────────────────
|
|
readonly property color bg: "#880d1117" // Deep midnight charcoal (80% trans)
|
|
readonly property color bgPanel: "transparent"
|
|
readonly property color bgPopup: "#88090c10" // Darker building shadow (93% trans)
|
|
readonly property color bgFrame: bg
|
|
|
|
// ── Separators ────────────────────────────────────────────────────────────
|
|
readonly property color separator: "#33565f89" // Slate blue structural gray
|
|
|
|
// ── Text ──────────────────────────────────────────────────────────────────
|
|
readonly property color textMain: "#ffe0e6ed" // Bright office window white
|
|
readonly property color textDim: "#9971798a" // Steel gray
|
|
readonly property color todayText: "#ffffffff"
|
|
|
|
// ── Accent & Borders ──────────────────────────────────────────────────────
|
|
readonly property color accent: "#ffffb86c" // Warm street lamp amber
|
|
readonly property color border: "transparent"
|
|
readonly property color borderPopup: "#882e3440" // Dark girder blue
|
|
readonly property color borderToday: accent
|
|
|
|
// ── ArchLogo Module ────────────────────────────────────────────────────────
|
|
readonly property color archLogoBg: bgPanel
|
|
readonly property color archLogoBgHover: "#22ffffff"
|
|
readonly property color archLogoHover: accent
|
|
readonly property color archLogoBorder: border
|
|
readonly property color archLogoBorderActive: accent
|
|
readonly property color archLogoIcon: textMain
|
|
readonly property color archLogoIconActive: accent
|
|
|
|
// ── Stats Module (Variation: Night City Lights) ───────────────────────────
|
|
readonly property color statsBg: bgPanel
|
|
readonly property color statsBorder: border
|
|
readonly property color statsText: "#ff71798a"
|
|
readonly property color statsRingColor: accent
|
|
readonly property color statsCpuColor: "#ffffb86c" // Streetlight gold
|
|
readonly property color statsMemColor: "#ff9ece6a" // Train stripe green
|
|
readonly property color statsDiskColor: "#ff7dcfff" // Cyan window light
|
|
readonly property color statsGpuColor: "#fff7768e" // Traffic taillight red
|
|
readonly property color statsTrackColor: "#15ffffff"
|
|
|
|
// ── Volume Module (Variation: Urban Sound) ────────────────────────────────
|
|
readonly property color volBg: bgPanel
|
|
readonly property color volBgHover: "#22565f89"
|
|
readonly property color volBorder: border
|
|
readonly property color volBorderHover: "#ff9ece6a"
|
|
readonly property color volPopupBg: bgPopup
|
|
readonly property color volPopupBorder: borderPopup
|
|
readonly property color volIcon: "#ff9ece6a"
|
|
readonly property color volIconMuted: "#ff444b6a"
|
|
readonly property color volTrack: "#22ffffff"
|
|
readonly property color volHandle: accent
|
|
readonly property color volHandleBorder: "#33ffffff"
|
|
readonly property color volMuteBg: "#33f7768e"
|
|
readonly property color volPickerHover: "#15ffb86c"
|
|
|
|
// ── Clock Module ───────────────────────────────────────────────────────────
|
|
readonly property color clockBg: bgPanel
|
|
readonly property color clockBgHover: "#11ffffff"
|
|
readonly property color clockBorder: border
|
|
readonly property color clockBorderHover: accent
|
|
readonly property color clockTime: textMain
|
|
readonly property color clockSeconds: "#ff9ece6a" // Subtle green pulse
|
|
readonly property color clockIcon: accent
|
|
readonly property color clockSeparator: separator
|
|
readonly property color clockText: textMain
|
|
readonly property color clockShadow: "#66000000"
|
|
|
|
// ── Calendar Popup ─────────────────────────────────────────────────────────
|
|
readonly property color calCardBg: bgPopup
|
|
readonly property color calCardBorder: borderPopup
|
|
readonly property color calSeparator: separator
|
|
readonly property color calShadow: "#aa000000"
|
|
readonly property color clockPopupHeader: "#ffffb86c"
|
|
readonly property color clockPopupText: textMain
|
|
readonly property color clockPopupDim: textDim
|
|
|
|
// ── Workspace Module ───────────────────────────────────────────────────────
|
|
readonly property color wsPanelBg: bgPanel
|
|
readonly property color wsPanelBorder: "transparent"
|
|
readonly property color wsActiveBg: accent
|
|
readonly property color wsInactiveBg: "#15ffffff"
|
|
readonly property color wsHoverBg: "#33565f89"
|
|
readonly property color wsActiveText: "#ff0d1117"
|
|
readonly property color wsInactiveText: textMain
|
|
readonly property color wsHoverText: "#ffffffff"
|
|
|
|
// ── Tray Module ────────────────────────────────────────────────────────────
|
|
readonly property color trayBg: bgPanel
|
|
readonly property color trayBgHover: "#11ffffff"
|
|
readonly property color trayBorder: border
|
|
readonly property color trayBorderHover: "#22ffffff"
|
|
readonly property color trayIcon: textMain
|
|
|
|
// ── Launcher (Variation: Neon Horizon) ─────────────────────────────────────
|
|
readonly property color launcherBg: bgPopup
|
|
readonly property color launcherBorder: "#44ffb86c"
|
|
readonly property color launcherInput: "#66090c10"
|
|
readonly property color launcherInputBorderFocus: accent
|
|
readonly property color launcherPill: "#44565f89"
|
|
readonly property color launcherText: textMain
|
|
readonly property color launcherDim: textDim
|
|
readonly property color launcherAccent: accent
|
|
readonly property color launcherHover: "#22ffb86c"
|
|
readonly property color launcherSelected: "#44ffb86c"
|
|
readonly property color launcherModeActiveText: "#ffffffff"
|
|
readonly property color launcherModeActiveBg: accent
|
|
|
|
// ── Status Colors ──────────────────────────────────────────────────────────
|
|
readonly property color statusOk: "#ff9ece6a" // Train green
|
|
readonly property color statusWarn: "#ffffb86c" // Streetlight amber
|
|
readonly property color statusErr: "#fff7768e" // Taillight red
|
|
readonly property color statusInfo: "#ff7dcfff" // Window cyan
|
|
|
|
// ── Notifications Module ───────────────────────────────────────────────────
|
|
readonly property color notifBg: bgPanel
|
|
readonly property color notifBgHover: "#11ffffff"
|
|
readonly property color notifBorder: border
|
|
readonly property color notifBorderActive: accent
|
|
readonly property color notifIcon: textMain
|
|
readonly property color notifIconActive: accent
|
|
readonly property color notifBadgeBg: statusErr
|
|
readonly property color notifBadgeText: "#ffffffff"
|
|
readonly property color notifSeparator: separator
|
|
readonly property color notifDnd: separator
|
|
|
|
// ── Toast cards (Variation: Tokyo Night) ───────────────────────────────────
|
|
readonly property color notifToastBg: bgPopup
|
|
readonly property color notifToastBgHover: "#22ffffff"
|
|
readonly property color notifToastBorder: borderPopup
|
|
readonly property color notifToastShadow: "#88000000"
|
|
readonly property color notifToastText: textMain
|
|
readonly property color notifToastDim: textDim
|
|
readonly property color notifToastAppName: "#ff7dcfff"
|
|
|
|
// ── Urgency colours ────────────────────────────────────────────────────────
|
|
readonly property color notifUrgencyCritical: statusErr
|
|
readonly property color notifUrgencyNormal: statusInfo
|
|
readonly property color notifUrgencyLow: textDim
|
|
|
|
// ── Progress bar ───────────────────────────────────────────────────────────
|
|
readonly property color notifProgressBg: "#22ffffff"
|
|
readonly property color notifProgressFill: accent
|
|
|
|
// ── History popup ──────────────────────────────────────────────────────────
|
|
readonly property color notifHistoryBg: bgPopup
|
|
readonly property color notifHistoryBorder: "#44ffb86c"
|
|
readonly property color notifHistoryShadow: "#aa000000"
|
|
readonly property color notifHistoryHover: "#11ffb86c"
|
|
readonly property color notifHistoryEmpty: textDim
|
|
}
|