logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/
commit: 3548075abb41baffb05ebd8f45886bb487ed3961
parent 5e098c123127fd289ac4c4fab8d8ae6e875c63ea
Author: Henry Jameson <me@hjkos.com>
Date:   Mon, 30 Dec 2024 20:56:50 +0200

i have no idea how this worked but now it actually works

Diffstat:

Msrc/services/color_convert/color_convert.js7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/services/color_convert/color_convert.js b/src/services/color_convert/color_convert.js @@ -197,7 +197,7 @@ export const getTextColor = function (bg, text, preserve) { const originalColor = convert(text).hex const invertedColor = invertLightness(originalColor).hex - const invertedContrast = getContrastRatio(bg, invertedColor) + const invertedContrast = getContrastRatio(bg, convert(invertedColor).rgb) let workColor if (invertedContrast > originalContrast) { @@ -210,9 +210,10 @@ export const getTextColor = function (bg, text, preserve) { const result = convert(rgb2hex(workColor)).hsl const delta = result.l > 50 ? 1 : -1 const multiplier = 10 - while (contrast < 4.5) { + while (contrast < 4.5 && result.l > 0 && result.l < 100) { result.l += delta * multiplier - contrast = getContrastRatio(bg, result) + contrast = getContrastRatio(bg, convert(result).rgb) + console.log(convert(result).hex, result.l, contrast) } const base = typeof text.a !== 'undefined' ? { a: text.a } : {}