summaryrefslogtreecommitdiff
path: root/imports/Eduport/Eduport.qml
blob: b966920e5984e0f49cc843c7a7c32f63af93369c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pragma Singleton
import QtQuick 2.15

QtObject {
	readonly property real fontSizeLead: 18.75
	readonly property real fontSizeFormControl: 16
	readonly property real fontSizeFormText: 14

	readonly property FontLoader heebo: FontLoader {
		source: "../../Heebo/Heebo-Bold.ttf"
	}
	readonly property font hFont: Qt.font({
		family: heebo.name
	})
}