mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-26 18:04:45 +10:00
docs(utils): correct color fallback comment to state real ceiling
Claude-Session: https://claude.ai/code/session_012Bnvt1MghwHj4qQRxuQUGa
This commit is contained in:
@@ -3,7 +3,9 @@ type ParsedColor = { r: number; g: number; b: number; a: number };
|
|||||||
export function rgbaStringToHex(rgba: string): string {
|
export function rgbaStringToHex(rgba: string): string {
|
||||||
const color = parseColorString(rgba);
|
const color = parseColorString(rgba);
|
||||||
if (color) return `#${toHexComponent(color.r)}${toHexComponent(color.g)}${toHexComponent(color.b)}`;
|
if (color) return `#${toHexComponent(color.r)}${toHexComponent(color.g)}${toHexComponent(color.b)}`;
|
||||||
// ponytail: unrecognized format → black; same result the prior @uiw/color-convert fallback produced
|
// ponytail: unrecognized format → black. Callers only pass builder-picker output (hex/rgba),
|
||||||
|
// which parseColorString handles; named-color/hsl inputs never reach here. If a caller ever needs
|
||||||
|
// those, restore a real converter (e.g. @uiw/color-convert) instead of this black fallback.
|
||||||
return "#000000";
|
return "#000000";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user