First implementation

This commit is contained in:
Yury Shuvakin
2025-07-02 18:00:35 +09:00
commit 6cf2010c08
107 changed files with 10803 additions and 0 deletions

11
Qml/Controls/Label.qml Normal file
View File

@@ -0,0 +1,11 @@
import QtQuick 2.12
import QtQuick.Controls 2.12 as Controls
import Palette 1.0
Controls.Label {
font.family: "Roboto"
font.pixelSize: 14
font.weight: Font.Normal
color: Palette.labelTextColor
}