organize files

This commit is contained in:
Sem
2026-03-29 23:58:48 +02:00
parent 06477003e0
commit e1371c647e
7 changed files with 266 additions and 205 deletions

View File

@@ -0,0 +1,20 @@
pragma Singleton
import QtQuick
Item {
id: constants
//font
property string fontFamily: "JetBrainsMono Nerd Font"
property int fontSize: 14
//colors
property color backgroundColor: "#1a1b26"
property color colBg: "#1a1b26"
property color colMuted: "#444b6a"
property color colCyan: "#0db9d7"
property color colBlue: "#7aa2f7"
property color colMagenta: "#e528c2"
property color colYellow: "#e0af68"
}