2015-12-27 17:59:32 +03:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
|
|
|
Item {
|
|
|
|
property color primaryColor: "#000000"
|
2015-12-31 19:12:54 +03:00
|
|
|
property color secondaryColor: "#777777"
|
2016-01-02 18:07:12 +03:00
|
|
|
property color highlightColor: "#aa4422"
|
2015-12-27 17:59:32 +03:00
|
|
|
property int paddingSmall: 4
|
|
|
|
property int paddingLarge: 20
|
|
|
|
property int fontSizeSmall: 10
|
|
|
|
property int fontSizeMedium: 16
|
|
|
|
property int fontSizeLarge: 25
|
|
|
|
property int fontSizeExtraLarge: 40
|
|
|
|
}
|