Files
HKSingleParty/99_references/supabase-examples/realtime/nextjs-authorization-demo/tailwind.config.js
2025-05-28 09:55:51 +08:00

18 lines
451 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: '#343434',
foreground: 'hsl(var(--foreground))',
btn: {
background: 'hsl(var(--btn-background))',
'background-hover': 'hsl(var(--btn-background-hover))',
},
},
},
},
plugins: [],
}