C

Qt Quick Ultralite Thermostat Demo

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial
pragma Singleton
import QtQuick 2.15

QtObject {
    readonly property color violet: "#6542e7";
    readonly property color blue: "#3c94eb";
    readonly property color greenDark: "#3acf93";
    readonly property color greenLight: "#5ae0aa";
    readonly property color greyLight1: "#f9fbfc";
    readonly property color greyLight2: "#f6f8f9";
    readonly property color pinkyRed: "#c6235a";
    readonly property color greyLight3: "#f2f4f5";
    readonly property color greyLight4: "#e8eaeb";
    readonly property color greyMedium1: "#dedfe0";
    readonly property color greyMedium2: "#d5dbe0";
    readonly property color greyMedium3: "#c4c9cc";
    readonly property color greyMedium4: "#b1b8bd";
    readonly property color greyDark1: "#90989d";
    readonly property color greyDark2: "#737b80";
    readonly property color greyDark3: "#5c6366";
    readonly property color greyDark4: "#3d464d";
    readonly property color greyDark5: "#303233";
    readonly property color white: "#ffffff";
}