UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

8 lines (7 loc) 291 B
import { IRGB } from './interfaces'; /** * Converts a valid CSS color string to an RGB color. * Note that hex colors *must* be prefixed with # to be considered valid. * Alpha in returned color defaults to 100. */ export declare function cssColor(color: string): IRGB | undefined;