polished
Version:
A lightweight toolset for writing styles in Javascript.
45 lines (38 loc) • 1.21 kB
JavaScript
exports.__esModule = true;
exports["default"] = void 0;
var _curry = /*#__PURE__*/_interopRequireDefault( /*#__PURE__*/require("../internalHelpers/_curry"));
var _mix = /*#__PURE__*/_interopRequireDefault( /*#__PURE__*/require("./mix"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
/**
* Shades a color by mixing it with black. `shade` can produce
* hue shifts, where as `darken` manipulates the luminance channel and therefore
* doesn't produce hue shifts.
*
* @example
* // Styles as object usage
* const styles = {
* background: shade(0.25, '#00f')
* }
*
* // styled-components usage
* const div = styled.div`
* background: ${shade(0.25, '#00f')};
* `
*
* // CSS in JS Output
*
* element {
* background: "#00003f";
* }
*/
function shade(percentage, color) {
if (color === 'transparent') return color;
return (0, _mix["default"])(parseFloat(percentage), 'rgb(0, 0, 0)', color);
} // prettier-ignore
var curriedShade = /*#__PURE__*/(0, _curry["default"]
/* ::<number | string, string, string> */
)(shade);
var _default = curriedShade;
exports["default"] = _default;
module.exports = exports.default;
;