~dpm/sudoku-app/rm-pot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.3
import Ubuntu.Components 1.1

Item {

    property color defaultColor: "#F5F5F5";
    property color defaultStartingColor : UbuntuColors.lightAubergine;
    property color defaultNotAllowedColor : UbuntuColors.darkAubergine;
    property color defaultHintColor: UbuntuColors.orange
    property color defaultBorderColor: "transparent";
    property color defaultTextColor: "white";
    property bool boldText: false;
    property color textColor: UbuntuColors.coolGrey;
    property color dialogButtonColor1: UbuntuColors.lightAubergine
    property color dialogButtonColor2: UbuntuColors.orange
    property color dialogButtonColor3: "black"
    property color dialogButtonTextColor: "white"
    property color headerColor: "#F5F5F5"
    property color backgroundColor: "#F5F5F5"
    property color footerColor: "#F5F5F5"

}