araozu.dev/tailwind.config.mjs

14 lines
258 B
JavaScript
Raw Normal View History

2024-04-23 22:06:30 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
'c-bg': 'var(--c-bg)',
'c-on-bg': 'var(--c-on-bg)',
},
},
},
plugins: [],
}