mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 14:13:47 +02:00
11 lines
185 B
QML
11 lines
185 B
QML
import QtQuick 2.4
|
|
|
|
Item {
|
|
property string hifiBlue: "#0e7077"
|
|
property alias colors: colorsObj
|
|
|
|
Item {
|
|
id: colorsObj
|
|
property string hifiRed: "red"
|
|
}
|
|
}
|