-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.45 KB
/
Copy pathtailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.45 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: 'class',
theme: {
extend: {
colors: {
apple: {
gray1: '#8e8e93',
gray2: '#aeaeb2',
gray3: '#c7c7cc',
gray4: '#d1d1d6',
gray5: '#e5e5ea',
gray6: '#f2f2f7',
dark1: '#1c1c1e',
dark2: '#2c2c2e',
dark3: '#3a3a3c',
dark4: '#48484a',
}
},
boxShadow: {
'apple': '0 4px 24px rgba(0, 0, 0, 0.06)',
'apple-lg': '0 8px 32px rgba(0, 0, 0, 0.08)',
'apple-dark': '0 4px 24px rgba(0, 0, 0, 0.3)',
},
fontFamily: {
sans: [
'-apple-system',
'BlinkMacSystemFont',
'"SF Pro Text"',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'sans-serif'
],
mono: [
'"SF Mono"',
'Menlo',
'Monaco',
'Consolas',
'monospace'
]
},
},
},
plugins: [],
}