UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Microsoft 365.

10 lines 411 B
import { MAX_COLOR_SATURATION, MAX_COLOR_VALUE } from './consts'; import { hsv2hex } from './hsv2hex'; /** * Converts a color hue to an HTML color string (with # prefix). * This implementation ignores all components of `color` except hue. */ export function getFullColorString(color) { return "#" + hsv2hex(color.h, MAX_COLOR_SATURATION, MAX_COLOR_VALUE); } //# sourceMappingURL=getFullColorString.js.map