18 lines
291 B
JavaScript
18 lines
291 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const colors = require('tailwindcss/colors')
|
|
|
|
module.exports = {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{devto,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
gray: colors.zinc
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|