mirror of
https://github.com/zoriya/flake.git
synced 2025-12-05 22:26:21 +00:00
14 lines
168 B
QML
14 lines
168 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
|
|
Singleton {
|
|
id: root
|
|
property QtObject colors
|
|
|
|
colors: QtObject {
|
|
readonly property color base: "#313244"
|
|
}
|
|
}
|