blob: acd6036e8b583d19a5c1785b89860132b8856c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import "themes.js" as Theme
Item {
property alias fontFoo: fontFooLoader.name
readonly property color colourBlackground: "#efefef"
// TODO use theme.background
FontLoader {
id: fontFooLoader
source: "qrc:/resources/fonts/Oxanium-Bold.ttf"
}
}
|