20 lines
539 B
JavaScript
20 lines
539 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: 'rgb(var(--background) / <alpha-value>)',
|
|
foreground: 'rgb(var(--foreground) / <alpha-value>)',
|
|
accent: 'rgb(var(--accent) / <alpha-value>)',
|
|
'accent-foreground': 'rgb(var(--accent-foreground) / <alpha-value>)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|