A Tailwind CSS plugin that provides a css standard colors/font sizes for headers, paragraph and body tags.
Install the plugin from npm:
# Using npm
npm install @srdante/tailwind-base
# Using Yarn
yarn add @srdante/tailwind-baseThen add the plugin to your tailwind.config.js file:
// tailwind.config.js
module.exports = {
theme: {
// ...
},
plugins: [
require('@srdante/tailwind-base'),
// ...
],
}