Switch to unified view

a b/frontend/tailwind.config.js
1
/** @type {import('tailwindcss').Config} */
2
module.exports = {
3
  content: [
4
    './src/**/*.{html,ts}',
5
  ],
6
  theme: {
7
    extend: {
8
      colors:{
9
        'cool-blue': {
10
          DEFAULT: '#308BC8',
11
          50: '#C0DDF0',
12
          100: '#AFD4EC',
13
          200: '#8EC2E4',
14
          300: '#6EB0DC',
15
          400: '#4D9ED4',
16
          500: '#308BC8',
17
          600: '#256C9B',
18
          700: '#1A4C6E',
19
          800: '#0F2D40',
20
          900: '#050D13',
21
          950: '#000000'
22
        },
23
      },
24
      spacing: {
25
        '100': '28rem',
26
        '128': '32rem',
27
        '130': '50rem'
28
      }
29
    },
30
  },
31
  variants: {
32
    extend: {},
33
  },
34
  plugins: [
35
    require("@tailwindcss/forms"),
36
    require('@tailwindcss/typography'),
37
  ],
38
};
39