summaryrefslogtreecommitdiff
path: root/modules/launcher
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 10:19:46 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 10:19:46 +1000
commitc665c0ca98d72c172893e8bbd9c893aaa2b9f46e (patch)
tree160713bc48b5332c0534d0d235ef7f100344eb58 /modules/launcher
parentbar: add scroll actions to fillers (diff)
downloadcaelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.tar.gz
caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.tar.bz2
caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.zip
feat: border + colour changes
Diffstat (limited to 'modules/launcher')
-rw-r--r--modules/launcher/AppList.qml2
-rw-r--r--modules/launcher/Background.qml2
-rw-r--r--modules/launcher/Content.qml4
-rw-r--r--modules/launcher/ContentList.qml4
-rw-r--r--modules/launcher/Launcher.qml1
5 files changed, 7 insertions, 6 deletions
diff --git a/modules/launcher/AppList.qml b/modules/launcher/AppList.qml
index 2f352ba..5dfdf8b 100644
--- a/modules/launcher/AppList.qml
+++ b/modules/launcher/AppList.qml
@@ -39,7 +39,7 @@ ListView {
highlight: StyledRect {
radius: Appearance.rounding.normal
- color: Appearance.alpha(Appearance.colours.m3surfaceContainerHighest, true)
+ color: Appearance.alpha(Appearance.colours.m3surfaceContainerHigh, true)
}
delegate: isAction ? actionItem : appItem
diff --git a/modules/launcher/Background.qml b/modules/launcher/Background.qml
index 0e9f7dd..7bffd26 100644
--- a/modules/launcher/Background.qml
+++ b/modules/launcher/Background.qml
@@ -16,7 +16,7 @@ Shape {
ShapePath {
strokeWidth: -1
- fillColor: Appearance.colours.m3surfaceContainer
+ fillColor: Appearance.colours.m3surface
startY: root.wrapperHeight
diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml
index 315835e..41904f7 100644
--- a/modules/launcher/Content.qml
+++ b/modules/launcher/Content.qml
@@ -24,7 +24,7 @@ Item {
StyledRect {
id: listWrapper
- color: Appearance.alpha(Appearance.colours.m3surfaceContainerHigh, true)
+ color: Appearance.alpha(Appearance.colours.m3surfaceContainer, true)
radius: root.rounding
implicitWidth: list.width + root.padding * 2
@@ -61,7 +61,7 @@ Item {
placeholderText: qsTr(`Type "${LauncherConfig.actionPrefix}" for commands`)
background: StyledRect {
- color: Appearance.alpha(Appearance.colours.m3surfaceContainerHigh, true)
+ color: Appearance.alpha(Appearance.colours.m3surfaceContainer, true)
radius: root.rounding
}
diff --git a/modules/launcher/ContentList.qml b/modules/launcher/ContentList.qml
index 74c229a..253bcf0 100644
--- a/modules/launcher/ContentList.qml
+++ b/modules/launcher/ContentList.qml
@@ -139,7 +139,7 @@ Item {
id: icon
text: "manage_search"
- color: Appearance.colours.m3outline
+ color: Appearance.colours.m3onSurfaceVariant
font.pointSize: Appearance.font.size.extraLarge
anchors.verticalCenter: parent.verticalCenter
@@ -153,7 +153,7 @@ Item {
anchors.verticalCenter: parent.verticalCenter
text: qsTr("No results")
- color: Appearance.colours.m3outline
+ color: Appearance.colours.m3onSurfaceVariant
font.pointSize: Appearance.font.size.larger
font.weight: 500
}
diff --git a/modules/launcher/Launcher.qml b/modules/launcher/Launcher.qml
index 34e592a..26549f5 100644
--- a/modules/launcher/Launcher.qml
+++ b/modules/launcher/Launcher.qml
@@ -25,6 +25,7 @@ Scope {
item: wrapper
}
+ margins.bottom: BackgroundConfig.border.thickness
anchors.top: true
anchors.left: true
anchors.bottom: true