aboutsummaryrefslogtreecommitdiffstats
path: root/tailwind.config.js
blob: 373e459fdc45ecf8b1c9804f9cfda5b7a396056c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export default {
  content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  theme: {
    extend: {
      colors: {
        ice: {
          50: '#CFECF7',
          100: '#B9E3F3',
          200: '#8DD1EC',
          300: '#61C0E5',
          400: '#36AEDD',
          500: '#2093C0',
          600: '#197599',
          700: '#135771',
          800: '#0C394A',
          900: '#061B23',
          950: '#020B0F',
        },
      },
    },
  },
  darkMode: 'class',
  plugins: [],
}