CK CSS
This stylesheet contains a few opinionated styles that I like to use in every one of my projects.
It should be used together with modern-normalize.css
.
Installation
npm i modern-normalize @chris-cross-crash/ck-css
Then import it where you import your other css files:
import 'modern-normalize'
import '@chris-cross-crash/ck-css'
colors
CSS Custom Properties
You can also import a nice set of colors from this package:
import '@chris-cross-crash/ck-css/colors.css'
import '../styles/globals.css'
.btn {
background-color: var(--teal-800);
color: var(--white);
}
The colors are from Tailwind CSS v3.0.0-alpha.1 (MIT License):
Here is the Tailwind CSS color reference (it might differ slightly from this version).