@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
20 lines (14 loc) • 624 B
text/typescript
import chroma from 'chroma-js';
export const convertAlphaToSolid = (foreground: string, background: string): string => {
const fgColor = chroma(foreground);
const bgColor = chroma(background);
const alpha = fgColor.alpha();
const alphaComplement = 1 - alpha;
const mixedColor: [number, number, number] = [
fgColor.get('rgb.r') * alpha + bgColor.get('rgb.r') * alphaComplement,
fgColor.get('rgb.g') * alpha + bgColor.get('rgb.g') * alphaComplement,
fgColor.get('rgb.b') * alpha + bgColor.get('rgb.b') * alphaComplement,
];
const resultColor = chroma(mixedColor);
return resultColor.hex();
};