UNPKG

dce-charts

Version:
11 lines (10 loc) 327 B
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;