mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-18 04:38:29 +00:00
13 lines
329 B
QML
13 lines
329 B
QML
import QtQuick
|
|
|
|
Rectangle {
|
|
function genRandomColor() {
|
|
return '#' + Math.floor(Math.random() * 255).toString(16) + Math.floor(Math.random() * 255).toString(16) + Math.floor(
|
|
Math.random() * 255).toString(16);
|
|
}
|
|
|
|
color: genRandomColor() //"blue"
|
|
opacity: 0.2
|
|
border.color: genRandomColor() //"red"
|
|
border.width: 2
|
|
}
|