mirror of
https://github.com/harivansh-afk/Habit-Tracker.git
synced 2026-04-15 11:02:19 +00:00
14 lines
No EOL
278 B
JavaScript
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: [],
|
|
}; |