summaryrefslogtreecommitdiffstats
path: root/examples/demos/coffee/imports/Coffee/Constants.qml
blob: ba24586c86fb269698ab5d9a97b032fdeae5529b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause


pragma Singleton
import QtQuick

QtObject {
    property FontLoader fontLoader: FontLoader {
        id: fontLoader
        source: "TitilliumWeb-Regular.ttf"
    }
    readonly property alias fontFamily: fontLoader.name

    readonly property int width: 1024
    readonly property int height: 768
    readonly property int leftSideBarWidth: 366
    readonly property int defaultX: 0

    readonly property color backgroundColor: "#443224"
    readonly property int defaultMargin: 8
}