You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
547 B

import QtQuick 2.0
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.0
Rectangle {
id: root
visible: true
color: "grey"
property string avatarBorderColor: "#999999"
property string chatBorderColor: "#30302f"
property string nickColor: "#86d5fc"
property string dividerColor: "#2c2c2c"
property int itemHeightDefault: 68
property int itemHeightSmall: 32
Text {
anchors.topMargin: 10
anchors.leftMargin: 10
font.pointSize: 18
text: "WIP 123"
color: "white"
}
}