aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tutorials/drumpad/initial_project/Drumpad/Constants.qml
blob: 73058229c962b30358f913a948a8722971139ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

pragma Singleton
import QtQuick

QtObject {
    readonly property string darkGray: "#333333"
    readonly property string mediumGray: "#9B9B9B"
    readonly property string primaryColor: "#FF0000"
    readonly property string secondaryColor: "#8C0000"
}