diff options
Diffstat (limited to 'gui/components/Style.qml')
-rw-r--r-- | gui/components/Style.qml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gui/components/Style.qml b/gui/components/Style.qml new file mode 100644 index 0000000..acd6036 --- /dev/null +++ b/gui/components/Style.qml @@ -0,0 +1,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" + } +} |