@tokene/styles
Default styles for every single TokenE frontend project with common utility as like as toRem, ...etc, mixins and variables
Getting Started
Installing
yarn add @tokene/styles
First of all, you need to initialize globals in the highest level of your application:
@import '@tokene/styles';
.some-class {
color: var(--primary-main);
background: var(--background-primary-dark);
}
In ts/js files
import '@tokene/styles/src/index.scss'
import '@tokene/styles/dist/styles.css'
import '@tokene/styles/dist/styles.min.css'
License
This project is licensed under the MIT License - see the LICENSE.md file for details