aboutsummaryrefslogtreecommitdiff
path: root/modules/system/quickshell/Theme.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/quickshell/Theme.qml')
-rw-r--r--modules/system/quickshell/Theme.qml47
1 files changed, 0 insertions, 47 deletions
diff --git a/modules/system/quickshell/Theme.qml b/modules/system/quickshell/Theme.qml
deleted file mode 100644
index 249a808..0000000
--- a/modules/system/quickshell/Theme.qml
+++ /dev/null
@@ -1,47 +0,0 @@
-pragma Singleton
-import QtQuick
-
-QtObject {
- // Basics
- readonly property color bg: "#33000000"
- readonly property color barBg: "#66000000"
- readonly property color surface: "#4DFFFFFF"
- readonly property color surfaceHover: "#66FFFFFF"
- readonly property color surfaceLighter: "#80FFFFFF"
- readonly property color border: "#1AFFFFFF"
-
- // Accents
- readonly property color accent: "#007AFF"
- readonly property color accentHover: "#0066CC"
- readonly property color destructive: "#FF3B30"
- readonly property color focus: "#007AFF"
-
- // Text
- readonly property color text: "#FFFFFF"
- readonly property color textDim: "#EBEBEB"
- readonly property color textMuted: "#C6C6C6"
- readonly property color textDisabled: "#999999"
- readonly property color textPlaceholder: "#808080"
- readonly property color textLight: "#FFFFFF"
-
- // Icons
- readonly property color iconDefault: "#FFFFFF"
- readonly property color iconActive: "#007AFF"
-
- // Components
- readonly property color sliderTrack: "#33FFFFFF"
- readonly property color sliderHandle: "#FFFFFF"
- readonly property color sliderOutline: "#1A000000"
-
- // Transparency Helpers
- readonly property color scrim: "#80000000"
- readonly property color transparent: "transparent"
-
- // Layout
- readonly property int barHeight: 32
- readonly property int popupGap: 8
-
- // Fonts
- readonly property string mainFont: "Inter"
- readonly property string monoFont: "JetBrains Mono"
-}