diff options
| author | subh <subh@subh.space> | 2026-04-04 10:34:46 +0530 |
|---|---|---|
| committer | subh <subh@subh.space> | 2026-04-04 10:34:46 +0530 |
| commit | 92811eb6050c2f2971c6ab8998b18d448ded35a0 (patch) | |
| tree | 356e3fecdf88cb6728f6df5222733e1aa8547ec2 /quickshell/mpd/shell.qml | |
| parent | 314d760de1922128124f2a9be0494fd4f6f7effb (diff) | |
Departure from catppuccin to gruvboxmain
Diffstat (limited to 'quickshell/mpd/shell.qml')
| -rw-r--r-- | quickshell/mpd/shell.qml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/quickshell/mpd/shell.qml b/quickshell/mpd/shell.qml index 04a74b8..d45f127 100644 --- a/quickshell/mpd/shell.qml +++ b/quickshell/mpd/shell.qml @@ -3,15 +3,15 @@ import Quickshell.Io import QtQuick import QtQuick.Layouts ShellRoot { - property color colBg: "#000000" - property color colFg: "#ffffff" - property color colMuted: "#313244" - property color colCyan: "#89dceb" - property color colPurple: "#cba6f7" - property color colRed: "#f38ba8" - property color colYellow: "#f9e2af" - property color colBlue: "#89b4fa" - property color colGreen: "#A3BE8C" + property color colBg: "#1d2021" // Gruvbox Background (Hard) + property color colFg: "#ebdbb2" // Gruvbox Foreground + property color colMuted: "#928374" // Gruvbox Gray (Muted) + property color colCyan: "#8ec07c" // Gruvbox Aqua/Cyan + property color colPurple: "#d3869b" // Gruvbox Purple + property color colRed: "#fb4934" // Gruvbox Red (Bright) + property color colYellow: "#fabd2f" // Gruvbox Yellow (Bright) + property color colBlue: "#83a598" // Gruvbox Blue + property color colGreen: "#b8bb26" // Gruvbox Green property string fontFamily: "Iosevka NerdFont Propo" property int fontSize: 16 property string mpd_title: "" @@ -286,7 +286,7 @@ ShellRoot { width: parent.width * mpd_progress height: parent.height radius: 2 - color: isPlaying ? colCyan : colYellow + color: isPlaying ? colRed : colYellow Behavior on width { enabled: !isSeeking NumberAnimation { duration: 950; easing.type: Easing.Linear } @@ -506,7 +506,7 @@ ShellRoot { id: progressFill width: progressTrack.width * mpd_progress height: parent.height; radius: 2 - color: isPlaying ? colCyan : colYellow + color: isPlaying ? colRed : colYellow Behavior on width { enabled: !isSeeking NumberAnimation { duration: 950; easing.type: Easing.Linear } |
