1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-28 07:50:55 +02:00
keeweb/app/styles/themes/_all-themes.scss
2020-11-28 23:38:12 +01:00

22 lines
427 B
SCSS

$themes: ();
@import 'theme-defaults';
@import 'dark';
@import 'light';
@import 'dark-brown';
@import 'flat-blue';
@import 'terminal';
@import 'high-contrast';
@import 'solarized-dark';
@import 'solarized-light';
@each $theme-name, $theme-vars in $themes {
$theme-vars: set-theme-vars($theme-vars);
.th-#{$theme-name} {
@each $key, $value in $theme-vars {
--#{$key}: #{$value};
}
}
}