You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
317 B

3 years ago
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const polished_1 = require("polished");
exports.default = (theme) => {
const rgb = polished_1.parseToRgb(theme.colors.accent);
const color = `rgba(${rgb.red}, ${rgb.green}, ${rgb.blue}, .58)`;
return `0 1px 4px 0 ${color};`;
};