//============
// Theme
//============

@use "../abstracts/colors" as c;

// Re-declare color variable inside a specific theme class.
.theme--dark {
  @each $label, $map in c.$colors {
    --color--#{$label}: #{map-get($map, dark)};
  }
}
