dce-charts
Version:
Harvard DCE's React Charting Wrapper
11 lines (10 loc) • 327 B
TypeScript
import Color from '../types/Color';
/**
* Get a css color based on a color object and opacity
* @author Jackson Parsells
* @param color the color object
* @param opacity opacity of the color
* @returns the css color as a string
*/
declare const getRGBA: (color: Color, opacity: number) => string;
export default getRGBA;