@paper-fe/css-variables
v1.0.1
Published
PAPER.ID's CSS Variables
Downloads
5
Readme
Paper.id's CSS Variables
How to Install
npm i @paper-fe/css-variables
Usage Example (Angular)
// in your angular.json
{
...,
"projects": {
"your-project-name": {
...,
"architect": {
...,
"build": {
...,
"options": {
...,
"styles": [
"src/styles.scss",
...,
"node_modules/@paper-fe/css-variables/index.css"
],
},
...,
},
...,
},
...,
},
...,
},
...
}
// in your styles
.my-css-class {
background: var(--blue-50);
}