mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 01:15:28 +00:00
Lowered contrast threshold
This commit is contained in:
@@ -461,5 +461,5 @@ function getContrastingColour(hex: string) {
|
|||||||
const g = parseInt(hex.substr(2, 2), 16);
|
const g = parseInt(hex.substr(2, 2), 16);
|
||||||
const b = parseInt(hex.substr(4, 2), 16);
|
const b = parseInt(hex.substr(4, 2), 16);
|
||||||
const cc = (r * 299 + g * 587 + b * 114) / 1000;
|
const cc = (r * 299 + g * 587 + b * 114) / 1000;
|
||||||
return cc >= 128 ? "black" : "white";
|
return cc >= 75 ? "black" : "white";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user