File size: 1,139 Bytes
3f21fb0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
module.exports = {
    content: [
      "./src/**/*.{js,jsx,ts,tsx}",
    ],
    theme: {
      extend: {
        colors: {
          'ios-blue': '#007AFF',
          'ios-green': '#4CD964',
          'ios-red': '#FF3B30',
          'ios-orange': '#FF9500',
          'ios-yellow': '#FFCC00',
          'ios-purple': '#5856D6',
          'ios-pink': '#FF2D55',
          'ios-teal': '#5AC8FA',
          'ios-indigo': '#5E5CE6',
          'ios-gray': '#8E8E93',
          'ios-gray2': '#AEAEB2',
          'ios-gray3': '#C7C7CC',
          'ios-gray4': '#D1D1D6',
          'ios-gray5': '#E5E5EA',
          'ios-gray6': '#F2F2F7',
        },
        borderRadius: {
          'ios-sm': '6px',
          'ios-md': '10px',
          'ios-lg': '14px',
        },
        boxShadow: {
          'ios-sm': '0 2px 10px rgba(0, 0, 0, 0.05)',
          'ios-md': '0 5px 15px rgba(0, 0, 0, 0.1)',
        },
        fontFamily: {
          'ios': ['-apple-system', 'BlinkMacSystemFont', 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', 'Arial', 'sans-serif'],
        },
      },
    },
    plugins: [],
  }