10 lines
196 B
QML
10 lines
196 B
QML
import QtQuick 2.0
|
|
import Nymea 1.0
|
|
|
|
Rectangle {
|
|
gradient: Gradient {
|
|
GradientStop { position: 0.0; color: "#e3eae4" }
|
|
GradientStop { position: 1.0; color: "#cde2d8" }
|
|
}
|
|
}
|