Added Color via matugen
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user