21 lines
479 B
JavaScript
21 lines
479 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
background: 'hsl(var(--background))',
|
|
foreground: 'hsl(var(--foreground))',
|
|
btn: {
|
|
background: 'hsl(var(--btn-background))',
|
|
'background-hover': 'hsl(var(--btn-background-hover))',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|