mirror of
https://github.com/tuxdotrs/tshell.git
synced 2026-03-22 03:06:32 +05:30
feat: setup base
This commit is contained in:
35
config/Appearance.qml
Normal file
35
config/Appearance.qml
Normal file
@@ -0,0 +1,35 @@
|
||||
pragma Singleton
|
||||
pragma ComponentBehavior: Bound
|
||||
|
||||
import QtQuick
|
||||
import Quickshell
|
||||
|
||||
Singleton {
|
||||
id: root
|
||||
property QtObject colors
|
||||
property QtObject font
|
||||
|
||||
property int margin
|
||||
property int radius
|
||||
property int spacing
|
||||
property int padding
|
||||
property int duration
|
||||
|
||||
margin: 8
|
||||
radius: 8
|
||||
spacing: 8
|
||||
padding: 8
|
||||
duration: 150
|
||||
|
||||
font: QtObject {
|
||||
property string family: "FiraCode Nerd Font Mono SemBd"
|
||||
property int pointSize: 9
|
||||
}
|
||||
|
||||
colors: QtObject {
|
||||
property color accent: "#6791c9"
|
||||
property color foreground: "#ffffff"
|
||||
property color background: "#101213"
|
||||
property color inActive: "#1b1d1e"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user