C

Qt Quick Ultralite Thermostat Demo

/****************************************************************************** ** ** Copyright (C) 2020 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Quick Ultralite module. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ******************************************************************************/
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"; }