feat: font pseudo-cirillico Russo One (OFL) incluso nel tema

This commit is contained in:
Matteo Benedetto
2026-08-16 17:07:37 +02:00
parent 72af5e414b
commit a3f1feaf7e
7 changed files with 47 additions and 0 deletions
+9
View File
@@ -1,7 +1,14 @@
import QtQuick 2.15
// Campo di input etichettato in stile costruttivista.
Column {
FontLoader {
id: themeFont
source: "assets/fonts/RussoOne-Regular.ttf"
}
id: field
property string label: ""
property alias text: input.text
@@ -15,6 +22,7 @@ Column {
Text {
text: field.label
color: "#f0dfba"
font.family: themeFont.name
font.pixelSize: 12
font.bold: true
font.letterSpacing: 2
@@ -36,6 +44,7 @@ Column {
anchors.rightMargin: 10
verticalAlignment: Text.AlignVCenter
color: "#f0dfba"
font.family: themeFont.name
font.pixelSize: 16
font.bold: true
echoMode: field.password ? TextInput.Password : TextInput.Normal