Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 901 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 901 Bytes

Beta-SCSS

Minimalist utility CSS kit for developer, built on SCSS !

Inspired by the awesome tailwindcss

License: MIT npm version Install size

Install

$ npm install beta-scss

Usage

You can basically use it as an import :

import `beta-scss`

Or, you can use the global.scss, which contains all variables :

@import "~beta-scss/packages/global"

// Define a color from the beta-scss palette
.blue {
 color: map-get($colors, "blue")
}