SailTuner/qml/DesktopTheme.qml
2016-01-05 22:55:08 +01:00

32 lines
1 KiB
QML

/* 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.
*
*/
import QtQuick 2.0
Item {
property color primaryColor: "#000000"
property color secondaryColor: "#777777"
property color highlightColor: "#aa4422"
property int paddingSmall: 4
property int paddingLarge: 20
property int fontSizeSmall: 10
property int fontSizeMedium: 16
property int fontSizeLarge: 25
property int fontSizeExtraLarge: 40
property string icon_pause: "qrc://images/icon-m-pause.svg"
}