You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.7 KiB
41 lines
1.7 KiB
10 months ago
|
import QtQuick 2.15
|
||
|
|
||
|
Item {
|
||
|
property font h1: Qt.font({
|
||
|
"family": 'Roboto',
|
||
|
"weight": Font.Normal,
|
||
|
"italic": false,
|
||
|
"pointSize": 40
|
||
|
})
|
||
|
property font h2: Qt.font({
|
||
|
"family": 'Roboto',
|
||
|
"weight": Font.Medium,
|
||
|
"italic": false,
|
||
|
"pointSize": 20
|
||
|
})
|
||
|
property font h3: Qt.font({
|
||
|
"family": 'Roboto',
|
||
|
"weight": Font.Bold,
|
||
|
"italic": false,
|
||
|
"pointSize": 16
|
||
|
})
|
||
|
property font h4: Qt.font({
|
||
|
"family": 'Roboto',
|
||
|
"weight": Font.DemiBold,
|
||
|
"italic": false,
|
||
|
"pointSize": 16
|
||
|
})
|
||
|
property font h5: Qt.font({
|
||
|
"family": 'Roboto',
|
||
|
"weight": Font.Normal,
|
||
|
"italic": false,
|
||
|
"pointSize": 16
|
||
|
})
|
||
|
property font h6: Qt.font({
|
||
|
"family": 'Roboto',
|
||
|
"weight": Font.Normal,
|
||
|
"italic": false,
|
||
|
"pointSize": 12
|
||
|
})
|
||
|
}
|