1 import type { Instance as Color } from 'tinycolor2';
2 import tinycolor from 'tinycolor2';
4 function genAccentColorShades(base: Color) {
5 const hsl = base.toHsl();
11 s: Math.max(0, hsl.s - 0.05),
12 l: Math.max(0, hsl.l - 0.05),
16 s: Math.max(0, hsl.s - 0.1),
17 l: Math.max(0, hsl.l - 0.1),
22 export default genAccentColorShades;