mirror of
https://github.com/supabase/supabase.git
synced 2026-06-12 08:29:15 +08:00
This PR runs `prettier` on the `examples` folder. Depends on https://github.com/supabase/supabase/pull/43849.
18 lines
466 B
JavaScript
18 lines
466 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: [],
|
|
}
|