C
Qt Quick Ultralite Watch Demo
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
pragma singleton;
QtObject {
id: theme
readonly property bool isDesktop: false
readonly property int appWidth: 390
readonly property int appHeight: 390
readonly property string fontFamily: "Montserrat"
readonly property color whiteColor: "#ffffff";
readonly property color grayColor: "#D8D8D8";
readonly property color backgroundColor: "#1e1e1e";
}