diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-03-17 14:18:18 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-03-17 14:18:18 -0400 |
| commit | 76b2b96be41d276505b4346433a1bcd7adb9d004 (patch) | |
| tree | 9c51af9081cfcea3276e92ceb32f89ffb0e44af1 /modules/bar | |
| parent | fix workspace indicator offset (diff) | |
| download | caelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.tar.gz caelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.tar.bz2 caelestia-shell-76b2b96be41d276505b4346433a1bcd7adb9d004.zip | |
Diffstat (limited to 'modules/bar')
| -rw-r--r-- | modules/bar/components/Clock.qml | 2 | ||||
| -rw-r--r-- | modules/bar/components/OsIcon.qml | 2 | ||||
| -rw-r--r-- | modules/bar/components/StatusIcons.qml | 2 | ||||
| -rw-r--r-- | modules/bar/components/TrayItem.qml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/bar/components/Clock.qml b/modules/bar/components/Clock.qml index 662e837..f44f9db 100644 --- a/modules/bar/components/Clock.qml +++ b/modules/bar/components/Clock.qml @@ -8,7 +8,7 @@ import QtQuick StyledRect { id: root - readonly property color colour: Colours.palette.m3tertiary + readonly property color colour: Colours.palette.m3secondary readonly property int padding: Appearance.padding.normal implicitWidth: Config.bar.sizes.innerWidth diff --git a/modules/bar/components/OsIcon.qml b/modules/bar/components/OsIcon.qml index 6710294..2d2eea3 100644 --- a/modules/bar/components/OsIcon.qml +++ b/modules/bar/components/OsIcon.qml @@ -40,7 +40,7 @@ Item { ColouredIcon { source: SysInfo.osLogo implicitSize: Math.round(Appearance.font.size.large * 1.2) - colour: Colours.palette.m3tertiary + colour: Colours.palette.m3primary } } } diff --git a/modules/bar/components/StatusIcons.qml b/modules/bar/components/StatusIcons.qml index ca7dc2e..ef0db3d 100644 --- a/modules/bar/components/StatusIcons.qml +++ b/modules/bar/components/StatusIcons.qml @@ -13,7 +13,7 @@ import QtQuick.Layouts StyledRect { id: root - property color colour: Colours.palette.m3secondary + property color colour: Colours.palette.m3primary readonly property alias items: iconColumn color: Colours.tPalette.m3surfaceContainer diff --git a/modules/bar/components/TrayItem.qml b/modules/bar/components/TrayItem.qml index 9911907..c8bb9af 100644 --- a/modules/bar/components/TrayItem.qml +++ b/modules/bar/components/TrayItem.qml @@ -28,7 +28,7 @@ MouseArea { anchors.fill: parent source: Icons.getTrayIcon(root.modelData.id, root.modelData.icon) - colour: Colours.palette.m3secondary + colour: Colours.palette.m3primary layer.enabled: Config.bar.tray.recolour } } |