mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-03-18 18:51:08 +03:00
less green
This commit is contained in:
@@ -19,7 +19,7 @@ function hashCode(str) {
|
||||
}
|
||||
|
||||
function intToRGB(i, a = 1) {
|
||||
return 'rgba(' + ((i >> 16) & 0xFF) + ', ' + ((i >> 8) & 0xFF)
|
||||
return 'rgba(' + ((i >> 16) & 0xFF) + ', ' + ((i >> 8) & 0x7F)
|
||||
+ ',' + (i & 0xFF) + ',' + a + ')';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user