mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 09:29:58 +01:00
19 lines
563 B
SCSS
19 lines
563 B
SCSS
@use 'sass:map';
|
|
@use 'sass:meta';
|
|
@use 'scale';
|
|
@use 'color';
|
|
|
|
/// Returns all the variables defined in a module,
|
|
/// as a map from variable names (without $)
|
|
/// to the values of those variables.
|
|
/// @link https://sass-lang.com/documentation/modules/meta#module-variables
|
|
$scale: meta.module-variables('scale');
|
|
$colors: meta.module-variables('color');
|
|
|
|
// Loops through and returns all tokens from above files as CSS variables.
|
|
@mixin tokens($map, $prefix: null) {
|
|
@each $tokenname, $tokenvalue in $map {
|
|
--#{$prefix}#{$tokenname}: #{$tokenvalue};
|
|
}
|
|
}
|