File size: 542 Bytes
aa15bce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import type { Config } from 'tailwindcss';

const config: Config = {
  content: [
    './app/**/*.{ts,tsx}',
    './components/**/*.{ts,tsx}',
  ],
  theme: {
    extend: {
      colors: {
        brand: {
          50: '#f0f7ff',
          100: '#e1effe',
          200: '#c3dffe',
          300: '#a5cffe',
          400: '#87bffe',
          500: '#69affd',
          600: '#4b9ffd',
          700: '#2d8ffd',
          800: '#0f7ffd',
          900: '#0a66cc'
        }
      }
    },
  },
  darkMode: 'class'
};

export default config;