-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 952 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 952 Bytes
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
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'system-ui', 'sans-serif'],
},
colors: {
brew: {
50: '#fef9f0',
100: '#fef0d6',
200: '#fcdda8',
300: '#f9c170',
400: '#f59e3a',
500: '#f27d14',
600: '#e35f09',
700: '#bc450a',
800: '#963710',
900: '#792e10',
950: '#411508',
},
},
boxShadow: {
card: '0 1px 3px 0 rgb(0 0 0 / 0.06), 0 1px 2px -1px rgb(0 0 0 / 0.06)',
'card-md': '0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.07)',
'card-lg': '0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08)',
},
transitionDuration: {
DEFAULT: '150ms',
},
},
},
plugins: [],
}