summaryrefslogtreecommitdiff
path: root/gui/components/Style.qml
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-08-27 19:45:41 +0200
committerkali kaneko (leap communications) <kali@leap.se>2021-10-06 18:37:22 +0200
commit15f2efc9aa77893d5300d198dd3b5c42549018e8 (patch)
tree35e4f512ec86a770960f786eeddaab1e8b29d929 /gui/components/Style.qml
parentb8c34672538109a67c1ffc4a4ec4f90772ea9e3e (diff)
[ui] refactor ui
Diffstat (limited to 'gui/components/Style.qml')
-rw-r--r--gui/components/Style.qml12
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"
+ }
+}