summaryrefslogtreecommitdiff
path: root/modules/bar
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bar')
-rw-r--r--modules/bar/components/Clock.qml2
-rw-r--r--modules/bar/components/OsIcon.qml2
-rw-r--r--modules/bar/components/StatusIcons.qml2
-rw-r--r--modules/bar/components/TrayItem.qml2
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
}
}