SailTuner/qml/DesktopTheme.qml

36 lines
1.1 KiB
QML
Raw Normal View History

2016-01-03 19:32:36 +03:00
/* Copyright 2016 (C) Louis-Joseph Fournier
* louisjoseph.fournier@gmail.com
*
* This file is part of SailTuner.
*
* SailTuner is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* SailTuner is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
2015-12-27 17:59:32 +03:00
import QtQuick 2.0
Item {
property color primaryColor: "#fefefe"
property color secondaryColor: "#bbbbbb"
property color highlightColor: "#aa4422"
2015-12-27 17:59:32 +03:00
property int paddingSmall: 4
property int paddingLarge: 20
property int fontSizeSmall: 13
property int fontSizeMedium: 17
2015-12-27 17:59:32 +03:00
property int fontSizeLarge: 25
property int fontSizeExtraLarge: 40
2016-01-06 00:55:08 +03:00
property string icon_pause: "../images/icon-m-pause.svg"
2016-01-11 14:38:05 +03:00
property string icon_pause_large: "../images/icon-l-pause.svg"
property string icon_play_large: "../images/icon-l-play.svg"
2015-12-27 17:59:32 +03:00
}