sagar007 commited on
Commit
da6c02d
·
verified ·
1 Parent(s): c0adf3b

Upload tailwind.config.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. tailwind.config.js +19 -0
tailwind.config.js ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: [
4
+ './pages/**/*.{js,jsx,ts,tsx}',
5
+ './components/**/*.{js,jsx,ts,tsx}',
6
+ ],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ 'kisan-green': '#2E7D32',
11
+ 'kisan-light': '#4CAF50',
12
+ 'kisan-dark': '#1B5E20',
13
+ 'kisan-gold': '#FFA000',
14
+ 'kisan-soil': '#5D4037',
15
+ },
16
+ },
17
+ },
18
+ plugins: [],
19
+ }