This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
powersync-app/nymea-app/styles/dark/ApplicationWindow.qml
2018-09-06 12:41:51 +02:00

36 lines
923 B
QML

import QtQuick 2.9
import QtQuick.Templates 2.2
import QtQuick.Controls.Material 2.2
ApplicationWindow {
Material.theme: Material.Dark
// The system (box) name.
property string systemName: "nymea"
// The app name
property string appName: "nymea:app"
// The header background color
property color primaryColor: Material.background
// Header font color
property color headerForegroundColor: Material.foreground
// The font color
property color foregroundColor: Material.foreground
// The color of selected/highlighted things
property color accentColor: "#ff57baae"
// colors for interfaces, e.g. icons
property var interfaceColors: {
"temperaturesensor": "red",
"humiditysensor": "deepskyblue",
"moisturesensor":"blue",
"lightsensor": "orange",
"conductivitysensor": "green",
"pressuresensor": "grey"
}
}