22 lines
476 B
JavaScript
22 lines
476 B
JavaScript
const colors = require('tailwindcss/colors');
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
|
darkMode: ['class'],
|
|
theme: {
|
|
colors: {
|
|
transparent: 'transparent',
|
|
current: 'currentColor',
|
|
white: colors.white,
|
|
primary: colors.indigo,
|
|
gray: colors.gray,
|
|
},
|
|
extend: {
|
|
spacing: {
|
|
22: '5.5rem',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|