aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/themeVariables.module.scss
blob: 85af421908304dfa177ed22e09f6c6822ad50ce8 (plain) (blame)
1
2
3
4
5
6
7
8
9
@import './themes';

:export {
  @each $themeName, $theme in $themes {
    @each $variable, $value in $theme {
      #{$themeName}--#{$variable}: $value,
    }
  }
}