mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
14 lines
332 B
QML
14 lines
332 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
|
|
}
|