@codesaursx/shadeswind
v1.0.4
Published
A tailwind plugin to generate your colour palette shades.
Downloads
3
Readme
@CodesaursX/shadeswind
A tailwind plugin to generate color shades.
Installation
npm install @codesaursx/shadeswind --save
# or
yarn add @codesaursx/shadeswind
Usage
Go to your tailwind.config.js
file and add the following.
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js}'],
theme: {
extend: {}
},
plugins: [
require('@codesaursx/shadeswind')({
primary: '#7f5af0'
})
]
};