Redesign Quickshell control center

This commit is contained in:
Mikhail Kilin
2026-07-26 16:51:25 +03:00
parent 6cb1d53a70
commit 4b3109a2dd
17 changed files with 1390 additions and 904 deletions

View File

@@ -0,0 +1,19 @@
import QtQuick
QtObject {
readonly property color background: "#11111b"
readonly property color surface: "#181825"
readonly property color surfaceVariant: "#1e1e2e"
readonly property color surfaceRaised: "#24243a"
readonly property color border: "#313244"
readonly property color primary: "#89b4fa"
readonly property color secondary: "#cba6f7"
readonly property color warning: "#f9e2af"
readonly property color critical: "#f38ba8"
readonly property color success: "#a6e3a1"
readonly property color text: "#cdd6f4"
readonly property color mutedText: "#9399b2"
readonly property color dimText: "#6c7086"
readonly property int cardRadius: 14
readonly property int controlRadius: 9
}