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.

43 lines
1.7 KiB

10 months ago
pragma Singleton
import QtQuick 2.13
10 months ago
Item {
property font h1: Qt.font({
"family": 'Roboto',
"weight": Font.Normal,
"italic": false,
10 months ago
"pixelSize": 40
10 months ago
})
property font h2: Qt.font({
"family": 'Roboto',
"weight": Font.Medium,
"italic": false,
10 months ago
"pixelSize": 20
10 months ago
})
property font h3: Qt.font({
"family": 'Roboto',
"weight": Font.Bold,
"italic": false,
10 months ago
"pixelSize": 16
10 months ago
})
property font h4: Qt.font({
"family": 'Roboto',
"weight": Font.DemiBold,
"italic": false,
10 months ago
"pixelSize": 16
10 months ago
})
property font h5: Qt.font({
"family": 'Roboto',
"weight": Font.Normal,
"italic": false,
10 months ago
"pixelSize": 16
10 months ago
})
property font h6: Qt.font({
"family": 'Roboto',
"weight": Font.Normal,
"italic": false,
10 months ago
"pixelSize": 12
10 months ago
})
}