aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/themeVariables.module.scss
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/themeVariables.module.scss')
-rw-r--r--subprojects/frontend/src/themeVariables.module.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/subprojects/frontend/src/themeVariables.module.scss b/subprojects/frontend/src/themeVariables.module.scss
new file mode 100644
index 00000000..85af4219
--- /dev/null
+++ b/subprojects/frontend/src/themeVariables.module.scss
@@ -0,0 +1,9 @@
1@import './themes';
2
3:export {
4 @each $themeName, $theme in $themes {
5 @each $variable, $value in $theme {
6 #{$themeName}--#{$variable}: $value,
7 }
8 }
9}