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

14 lines
268 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'accent-1': '#333',
},
},
},
variants: {},
plugins: [],
}