generated from marciobever/template-astro-base
22 lines
576 B
JavaScript
22 lines
576 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
|
|
'../src/templates/**/*.{js,jsx,ts,tsx}', // Temporary: to read classes from autoblog-2 components during dev
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: 'var(--primary)',
|
|
background: 'var(--background)',
|
|
},
|
|
fontFamily: {
|
|
sans: ['var(--font-family)', 'sans-serif'],
|
|
mono: ['Space Mono', 'monospace'],
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|