feat(client): add some theme functions

This commit is contained in:
syuilo 2021-10-14 01:25:50 +09:00
parent bae55207ce
commit bff89a1a1c

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);
}
}