updated clock module: added animations and removed redundancies

This commit is contained in:
SomeElse
2026-04-28 06:03:57 +00:00
parent 41d010618e
commit 1682c0a208
14 changed files with 395 additions and 47 deletions

View File

@@ -84,6 +84,13 @@ QtObject {
readonly property color clockPopupHeader: "#ffc19375"
readonly property color clockPopupText: textMain
readonly property color clockPopupDim: textDim
readonly property color clockPopupDate: textMain // Numeric date in the popup (month/day/year)
readonly property color clockPopupUtc: textDim // UTC offset label (e.g. UTC +2)
readonly property color calArrowIcon: textDim // Default arrow glyph color
readonly property color calArrowIconHover: "#ffc19375" // Hovered arrow — horizon gold
readonly property color calArrowBg: "transparent" // Default button background
readonly property color calArrowBgHover: "#22c19375" // Hovered button — soft gold tint
readonly property color calArrowBgPress: "#ffc19375" // Pressed button — full horizon gold
// ── Workspace Module ───────────────────────────────────────────────────────
readonly property color wsPanelBg: bgPanel
@@ -158,4 +165,9 @@ QtObject {
readonly property color notifHistoryShadow: "#aa000000"
readonly property color notifHistoryHover: "#11c19375"
readonly property color notifHistoryEmpty: textDim
// ── BgDate Module ──────────────────────────────────────────────────────────
readonly property color bgDateText: textMain // Date string color
readonly property color bgDateShadow: "#66000000" // Drop shadow for both texts
readonly property color bgDateSecondsText: textMain // Seconds clock — sun-glow gold
}