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.
|
// Color manipulation utilities |
|
|
|
function blendColors(clr0, clr1, p) { |
|
return Qt.tint(clr0, adjustAlpha(clr1, p)); |
|
} |
|
|
|
function adjustAlpha(clr, a) { |
|
return Qt.rgba(clr.r, clr.g, clr.b, a); |
|
}
|
|
|