15 lines
249 B
QML
15 lines
249 B
QML
import QtQuick
|
|
import "../Color.js" as Colors
|
|
|
|
Text {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
color: Colors.base
|
|
|
|
font {
|
|
family: "FiraMono Nerd Font"
|
|
pointSize: 12
|
|
weight: 600
|
|
}
|
|
}
|