devscard/tailwind.config.cjs
2022-08-25 18:24:46 +02:00

16 lines
384 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}'],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
white: colors.white,
primary: colors.indigo,
gray: colors.gray,
},
},
plugins: [],
};