feat(client): add some theme functions

This commit is contained in:
syuilo 2021-10-14 01:25:50 +09:00
parent 23de45cea5
commit 3f95bd53cd

View file

@ -92,6 +92,8 @@ function compile(theme: Theme): Record<string, string> {
case 'darken': return color.darken(arg);
case 'lighten': return color.lighten(arg);
case 'alpha': return color.setAlpha(arg);
case 'hue': return color.spin(arg);
case 'saturate': return color.saturate(arg);
}
}