162 lines
10 KiB
QML
162 lines
10 KiB
QML
pragma Singleton
|
|
import QtQuick
|
|
import Quickshell
|
|
|
|
QtObject {
|
|
id: theme
|
|
|
|
// ── Wallpaper ──────────────────────────────────────────────────────────────
|
|
readonly property string wallpaper: Quickshell.env("HOME") + "/.config/quickshell/wallpapers/wallhaven-qd2xjd.jpg"
|
|
|
|
// ── Base Backgrounds ───────────────────────────────────────────────────────
|
|
readonly property color bg: "#cc0c0e12" // Deepest foreground shadow
|
|
readonly property color bgPanel: "transparent"
|
|
readonly property color bgPopup: "#cc0c0e12" // Near-black building silhouettes
|
|
readonly property color bgFrame: bg
|
|
|
|
// ── Separators ────────────────────────────────────────────────────────────
|
|
readonly property color separator: "#334a5d6e" // Muted sky blue-gray
|
|
|
|
// ── Text ──────────────────────────────────────────────────────────────────
|
|
readonly property color textMain: "#ffe8eef2" // Bright cloud highlight white
|
|
readonly property color textDim: "#997a8996" // Hazy horizon gray
|
|
readonly property color todayText: "#ffffffff"
|
|
|
|
// ── Accent & Borders ──────────────────────────────────────────────────────
|
|
readonly property color accent: "#ffc19375" // Warm hazy horizon gold
|
|
readonly property color border: "transparent"
|
|
readonly property color frameBorder: "transparent"
|
|
readonly property color borderPopup: "transparent"
|
|
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: Skyline Pulse) ───────────────────────────────
|
|
readonly property color statsBg: bgPanel
|
|
readonly property color statsBorder: border
|
|
readonly property color statsText: "#ff7a8996"
|
|
readonly property color statsRingColor: accent
|
|
readonly property color statsCpuColor: "#ffc19375" // Horizon gold
|
|
readonly property color statsMemColor: "#ff89b4fa" // Building window blue
|
|
readonly property color statsDiskColor: "#ff94e2d5" // Teal office light
|
|
readonly property color statsGpuColor: "#fff38ba8" // Aviation warning red
|
|
readonly property color statsTrackColor: "#15ffffff"
|
|
|
|
// ── Volume Module (Variation: Hazy Dusk) ──────────────────────────────────
|
|
readonly property color volBg: bgPanel
|
|
readonly property color volBgHover: "#224a5d6e"
|
|
readonly property color volBorder: border
|
|
readonly property color volBorderHover: "#ff89b4fa"
|
|
readonly property color volPopupBg: bgPopup
|
|
readonly property color volPopupBorder: borderPopup
|
|
readonly property color volIcon: "#ff89b4fa"
|
|
readonly property color volIconMuted: "#ff5a6b78"
|
|
readonly property color volTrack: "#22ffffff"
|
|
readonly property color volHandle: accent
|
|
readonly property color volHandleBorder: "#33ffffff"
|
|
readonly property color volMuteBg: "#33f38ba8"
|
|
readonly property color volPickerHover: "#15c19375"
|
|
|
|
// ── 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: "#ffc19375" // Sun-glow gold
|
|
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: "#88000000"
|
|
readonly property color clockPopupHeader: "#ffc19375"
|
|
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: "#334a5d6e"
|
|
readonly property color wsActiveText: "#ff0c0e12"
|
|
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: Shanghai Mist) ───────────────────────────────────
|
|
readonly property color launcherBg: bgPopup
|
|
readonly property color launcherBorder: borderPopup
|
|
readonly property color launcherInput: "#44080a0d"
|
|
readonly property color launcherInputBorderFocus: accent
|
|
readonly property color launcherPill: "#444a5d6e"
|
|
readonly property color launcherText: textMain
|
|
readonly property color launcherDim: textDim
|
|
readonly property color launcherAccent: accent
|
|
readonly property color launcherHover: "#22c19375"
|
|
readonly property color launcherSelected: "#44c19375"
|
|
readonly property color launcherModeActiveText: "#ffffffff"
|
|
readonly property color launcherModeActiveBg: accent
|
|
|
|
// ── Status Colors ──────────────────────────────────────────────────────────
|
|
readonly property color statusOk: "#ffb4c9a1"
|
|
readonly property color statusWarn: "#ffc19375"
|
|
readonly property color statusErr: "#fff38ba8"
|
|
readonly property color statusInfo: "#ff89b4fa"
|
|
|
|
// ── 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: City Glow) ─────────────────────────────────────
|
|
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: "#ff89b4fa"
|
|
|
|
// ── 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: "#44c19375"
|
|
readonly property color notifHistoryShadow: "#aa000000"
|
|
readonly property color notifHistoryHover: "#11c19375"
|
|
readonly property color notifHistoryEmpty: textDim
|
|
}
|