Added Color via matugen

This commit is contained in:
Hannes
2026-02-16 23:44:27 +01:00
parent b0c1bc7973
commit 77187b94d3
9 changed files with 42 additions and 27 deletions
+10 -7
View File
@@ -4,6 +4,7 @@ import QtQuick.Controls
import Quickshell.Hyprland
import Quickshell.Io
import Qt.labs.folderlistmodel
import "../../colors"
PanelWindow {
id: picker
@@ -15,10 +16,10 @@ PanelWindow {
Rectangle {
anchors.fill: parent
radius: 10
color: "#80000000"
color: Qt.alpha(Colors.surfaceContainerLowest, 0.5)
border.width: 2
border.color: "#555555"
border.color: Colors.outlineVariant
//Wallpaper space
@@ -31,7 +32,7 @@ PanelWindow {
width: parent.width - 35
height: parent.height - 100
color: "#80202020"
color: Qt.alpha(Colors.surfaceContainer, 0.5)
radius: 10
clip: true
@@ -75,6 +76,9 @@ PanelWindow {
width: grid.cellWidth -10
height: grid.cellHeight * 0.7
sourceSize.width: grid.cellWidth -10
sourceSize.height: grid.cellHeight * 0.7
asynchronous: true
cache: true
}
@@ -83,7 +87,7 @@ PanelWindow {
id: textHighlight
width: parent.width - 10
height: 24
color: mouseArea.containsMouse ? "#804a90e2" : "transparent"
color: mouseArea.containsMouse ? Qt.alpha(Colors.surfaceContainerHover, 0.5) : "transparent"
anchors.horizontalCenter: parent.horizontalCenter
Text {
@@ -94,7 +98,7 @@ PanelWindow {
font.pixelSize: 15
font.family: "Fira Sans"
color: "white"
color: Colors.surface_fg
}
}
}
@@ -134,11 +138,10 @@ PanelWindow {
anchors.fill: parent
radius: 10
color: "transparent"
border.color: "#777777"
border.color: Colors.outline
border.width: 1
z: 999
}
}
}
}