Put all the QML colors into a single standalone configurable file

This commit is contained in:
Tomas Rivera
2026-03-11 10:48:44 +01:00
parent 3bc27a2a4f
commit d374a70c9c
29 changed files with 112 additions and 883 deletions
+3 -2
View File
@@ -3,6 +3,7 @@ import QtQuick.Layouts
import Quickshell
import Quickshell.Widgets
import Quickshell.DBusMenu
import "../../theme" as Theme
import "../.."
MouseArea {
@@ -34,7 +35,7 @@ MouseArea {
anchors.fill: parent
visible: root.containsMouse || childrenRevealer.expanded
color: "#824524"
color: Theme.Colors.menuItemColor1
}
ColumnLayout {
id: row
@@ -71,7 +72,7 @@ MouseArea {
Text {
text: entry.text
color: entry.enabled ? "white" : "#bbbbbb"
color: entry.enabled ? Theme.Colors.menuItemColor2 : Theme.Colors.menuItemColor3
}
Item {