owl-stream/tailwind.config.js
2024-10-26 20:00:25 -04:00

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: [],
}