blob: 57956c99e3c9cbe49633dc86e33669e5cd61acc9 [file] [log] [blame]
Yoshie Muranaka1f4eaa12020-08-10 11:17:12 -07001// This function is usually used to get a lighter
2// theme variant color to use as a background color
3@function theme-color-light($variant) {
4 @return theme-color-level($variant, -11.3);
Sukanya Pandeyfde429e2020-09-14 20:48:39 +05305}
6
7@function theme-color-dark($variant) {
8 @return theme-color-level($variant, 2);
Yoshie Muranaka1f4eaa12020-08-10 11:17:12 -07009}