diff --git a/images/bg_landscape.png b/images/bg_landscape.png new file mode 100644 index 0000000..20cf6b1 Binary files /dev/null and b/images/bg_landscape.png differ diff --git a/images/bg_portait.png b/images/bg_portait.png new file mode 100644 index 0000000..19891d8 Binary files /dev/null and b/images/bg_portait.png differ diff --git a/qml/DesktopTheme.qml b/qml/DesktopTheme.qml index b49e45c..509c6a6 100644 --- a/qml/DesktopTheme.qml +++ b/qml/DesktopTheme.qml @@ -18,15 +18,15 @@ import QtQuick 2.0 Item { - property color primaryColor: "#000000" - property color secondaryColor: "#777777" + property color primaryColor: "#fefefe" + property color secondaryColor: "#bbbbbb" property color highlightColor: "#aa4422" property int paddingSmall: 4 property int paddingLarge: 20 - property int fontSizeSmall: 10 - property int fontSizeMedium: 16 + property int fontSizeSmall: 13 + property int fontSizeMedium: 17 property int fontSizeLarge: 25 property int fontSizeExtraLarge: 40 - property string icon_pause: "qrc://images/icon-m-pause.svg" + property string icon_pause: "../images/icon-m-pause.svg" } diff --git a/qml/Scene.qml b/qml/Scene.qml index d245e14..0398184 100644 --- a/qml/Scene.qml +++ b/qml/Scene.qml @@ -22,9 +22,11 @@ import QtQuick 2.0 * to work on qml files */ -Item { - width: 600 - height: 200 +Image { + width: 800 + height: 400 + + source: "../images/bg_portait.png" DesktopTheme { id: theme