Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 332 Bytes

File metadata and controls

19 lines (17 loc) · 332 Bytes

Color Shade Generator for TailwindCSS

Usage

const shadesOf = require('tailwind-shades');

/** @type {import('tailwindcss').Config} */
module.exports = {
    content: [],
    theme: {
        extend: {
            colors: {
                accent: shadesOf('#913985')
            }
        }
    },
    plugins: []
}