@elastic/eui
Version:
Elastic UI Component Library
30 lines (28 loc) • 870 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.hsvToHex = hsvToHex;
var _hsv_to_rgb = require("./hsv_to_rgb");
var _rgb_to_hex = require("./rgb_to_hex");
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
function hsvToHex(_ref) {
var h = _ref.h,
s = _ref.s,
v = _ref.v;
var _hsvToRgb = (0, _hsv_to_rgb.hsvToRgb)({
h: h,
s: s,
v: v
}),
r = _hsvToRgb.r,
g = _hsvToRgb.g,
b = _hsvToRgb.b;
return (0, _rgb_to_hex.rgbToHex)("rgb(".concat(r, ", ").concat(g, ", ").concat(b, ")"));
}