File size: 1,158 Bytes
21d7fc3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: [
    "./pages/**/*.{js,ts,jsx,tsx}",
    "./components/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {
      container: {
        center: true,
        padding: '1rem',
      },
      colors: {
        black: '#000000',
        white: '#FFFFFF',
        zinc: {
          700: '#3f3f46',
          800: '#27272a',
          900: '#18181b',
        },
      },
      fontSize: {
        sm: ['14px', '20px'],
        base: ['16px', '24px'],
        lg: ['20px', '28px'],
      },
      maxWidth: {
        '1000': '1000px',
        '2xl': '42rem',
      },
      width: {
        '414': '414px',
        '564': '564px',
      },
      height: {
        '538': '538px',
      },
      borderRadius: {
        '15': '15px',
        '26': '26px',
        'xl': '1rem',
        '2xl': '1.5rem',
      },
      padding: {
        '23': '23px',
        '25': '25px',
      },
      spacing: {
        '15': '15px',
        '23': '23px',
        '25': '25px',
        '50': '50px',
      },
      fontFamily: {
        sans: ['var(--font-inter)'],
      },
    },
  },
  plugins: [],
}