An open API service indexing awesome lists of open source software.

https://github.com/matteusan/himig

MatteuSan's personal design system for building user interfaces.
https://github.com/matteusan/himig

component-library css css-framework design-system sass scss theme web

Last synced: 10 days ago
JSON representation

MatteuSan's personal design system for building user interfaces.

Awesome Lists containing this project

README

        

## Prerequisites
Be sure to have [NodeJS](https://nodejs.org) LTS installed. Any other version will risk the project breaking in
development.
This design system is dependent on the CSS preprocessor, [Sass](https://sass-lang.com). When using Sass, **be sure to
use DartSass instead of the now deprecated LibSass (node-sass)**.

## Setup
```sh
$ npm install @matteusan/himig --save

# or

$ yarn add @matteusan/himig
```
```scss
// main.scss

@use 'pkg:@matteusan/sentro';
@use '@matteusan/himig/ms-button';

@include himig.init() {
@include ms-button.render();
}
```

## Contributing
Contributing guidelines are located [here](https://github.com/MatteuSan/himig/tree/main/.github/CONTRIBUTING.md).