shimanta420 commited on
Commit
aa03308
·
verified ·
1 Parent(s): 1b11240

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +18 -0
tailwind.config.js ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ "./pages/**/*.{js,ts,jsx,tsx}",
5
+ "./components/**/*.{js,ts,jsx,tsx}",
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ primary: '#3B82F6',
11
+ secondary: '#10B981',
12
+ dark: '#1F2937',
13
+ light: '#F9FAFB',
14
+ },
15
+ },
16
+ },
17
+ plugins: [],
18
+ }