File size: 810 Bytes
345e5f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
32
33
34
/** @type {import('tailwindcss').Config} */
export default {
  content: ['./index.html', './src/**/*.{ts,tsx,js,jsx}'],
  theme: {
    extend: {
      fontFamily: {
        display: ['"Space Grotesk"', '"IBM Plex Sans"', 'system-ui', 'sans-serif'],
        mono: ['"JetBrains Mono"', 'ui-monospace', 'SFMono-Regular', 'monospace'],
      },
      colors: {
        ink: {
          50: '#f4f7fb',
          100: '#dfe7f5',
          200: '#beceec',
          300: '#95addf',
          400: '#6a87ce',
          500: '#4b64bc',
          600: '#3b4ea7',
          700: '#32418a',
          800: '#2c376f',
          900: '#262f5c',
        },
        ember: '#ff7043',
        mint: '#48e4c2',
      },
      boxShadow: {
        panel: '0 14px 35px rgba(0, 0, 0, 0.25)',
      },
    },
  },
  plugins: [],
}