Files
supabase/examples/todo-list/nextjs-todo-list/tailwind.config.js
2023-02-22 14:41:36 +00: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: [],
}