readded some files that need to be there

This commit is contained in:
Hannes
2026-06-14 00:50:35 +02:00
parent 6ab83915a1
commit 6eeb676f14
4 changed files with 70 additions and 1 deletions
-1
View File
@@ -1,6 +1,5 @@
*.svg *.svg
Colors.qml Colors.qml
*.template
modules/wlogout/scripts/helper.sh modules/wlogout/scripts/helper.sh
config/path/ConfigPath.qml config/path/ConfigPath.qml
config/path/WallpaperPath.qml config/path/WallpaperPath.qml
+57
View File
@@ -0,0 +1,57 @@
pragma Singleton
import QtQuick 2.15
QtObject {
// ===== PRIMARY =====
readonly property color primary: "#cbcb77"
readonly property color primary_fg: "#323200"
readonly property color primaryContainer: "#494900"
readonly property color primaryContainer_fg: "#e7e790"
// ===== SECONDARY =====
readonly property color secondary: "#cac8a5"
readonly property color secondary_fg: "#323218"
readonly property color secondaryContainer: "#48482d"
readonly property color secondaryContainer_fg: "#e6e4bf"
// ===== TERTIARY =====
readonly property color tertiary: "#a4d0bd"
readonly property color tertiary_fg: "#0a372a"
readonly property color tertiaryContainer: "#254e40"
readonly property color tertiaryContainer_fg: "#bfecd9"
// ===== ERROR =====
readonly property color error: "#ffb4ab"
readonly property color error_fg: "#690005"
readonly property color errorContainer: "#93000a"
readonly property color errorContainer_fg: "#ffdad6"
// ===== BACKGROUND / SURFACE =====
readonly property color background: "#14140c"
readonly property color background_fg: "#e6e3d5"
readonly property color surface: "#14140c"
readonly property color surface_fg: "#e6e3d5"
readonly property color surfaceVariant: "#48473a"
readonly property color surfaceVariant_fg: "#c9c7b6"
// ===== SURFACE CONTAINERS =====
readonly property color surfaceContainerLowest: "#0f0f07"
readonly property color surfaceContainerLow: "#1c1c14"
readonly property color surfaceContainer: "#202018"
readonly property color surfaceContainerHigh: "#2b2a22"
readonly property color surfaceContainerHighest: "#36352c"
// ===== OUTLINE / UTILITY =====
readonly property color outline: "#939182"
readonly property color outlineVariant: "#48473a"
readonly property color shadowColor: "#000000"
readonly property color scrimColor: "#000000"
// ===== INVERSE =====
readonly property color inverseSurface: "#e6e3d5"
readonly property color inverseSurface_fg: "#313128"
readonly property color inversePrimary: "#616219"
}
+6
View File
@@ -0,0 +1,6 @@
pragma Singleton
import QtQuick 2.15
QtObject {
readonly property string path: "__CONFIG_DIR__"
}
+7
View File
@@ -0,0 +1,7 @@
pragma Singleton
import QtQuick
import Quickshell
QtObject {
property string wallpaperDir: "__CONFIG_DIR__"
}