2023-01-09 12:00:00 +00:00
|
|
|
const colors = require('tailwindcss/colors');
|
|
|
|
const plugin = require("tailwindcss/plugin");
|
|
|
|
|
2023-01-09 09:21:55 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2023-01-09 12:00:00 +00:00
|
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
colors: {
|
|
|
|
gray: {
|
|
|
|
750: "#343a40",
|
|
|
|
...colors.neutral,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
plugin(({ addVariant }) => {
|
|
|
|
addVariant('hocus', ['&:hover', '&:focus'])
|
|
|
|
}),
|
|
|
|
],
|
2023-01-09 09:21:55 +00:00
|
|
|
}
|