Habit-Tracker/tailwind.config.js
2024-11-17 13:40:06 -05:00

14 lines
No EOL
278 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#000000',
secondary: '#ffffff',
},
},
},
plugins: [],
};