Skip to content

Getting Started

Installation

Add Magnesium as dependencies for your project.

bash
npm install @magnesium/theme

Try

Try it on StackBlitz.

Usage

scss
@use "@magnesium/theme";

$theme: (
    "text-color": darkcyan
);

.foo {
    @include theme.emit-custom-props($theme, "button");
}
css
.foo {
    --mg-button-text-color: darkcyan;
}

Released under the MIT License.