File size: 403 Bytes
da6c02d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    './pages/**/*.{js,jsx,ts,tsx}',
    './components/**/*.{js,jsx,ts,tsx}',
  ],
  theme: {
    extend: {
      colors: {
        'kisan-green': '#2E7D32',
        'kisan-light': '#4CAF50',
        'kisan-dark': '#1B5E20',
        'kisan-gold': '#FFA000',
        'kisan-soil': '#5D4037',
      },
    },
  },
  plugins: [],
}