14 lines
288 B
QML
14 lines
288 B
QML
import QtQuick 2.0
|
|
import QtQuick.Templates 2.2
|
|
import QtQuick.Controls.Material 2.2
|
|
|
|
ApplicationWindow {
|
|
property color guhAccent: "#ff57baae"
|
|
property string systemName: "nymea"
|
|
|
|
Material.theme: Material.Light
|
|
Material.accent: guhAccent
|
|
Material.primary: "white"
|
|
|
|
}
|