21 lines
453 B
QML
21 lines
453 B
QML
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"
|
|
}
|