-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (47 loc) · 954 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}'
],
darkMode: 'class',
theme: {
fontFamily: {
clarityCity: ['Clarity City', 'sans-serif']
},
screens: {
xs: '100%',
sm: '576px',
md: '768px',
lg: '992px',
xl: '1200px',
'2xl': '1400px'
},
container: {
center: true,
padding: '1rem',
maxWidth: {
sm: '540px',
md: '720px',
lg: '960px',
xl: '1140px'
}
},
extend: {
colors: {
midnight: '#181a20',
lightmidnight: '#212328',
f7f7f7: '#f7f7f7',
fff: '#fff',
orangePrimary: '#eb6753',
orangePrimaryLight: '#FDEBE9',
orangePrimaryLightHover: '#ED7765',
borderColor: '#dddddd'
},
spacing: {
'calc-half-minus-30': 'calc(50% - 15px)'
}
}
},
plugins: []
}