-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (51 loc) · 1.1 KB
/
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
48
49
50
51
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
`./src/pages/**/*.{js,jsx,ts,tsx}`,
`./src/components/**/*.{js,jsx,ts,tsx}`,
`./src/templates/**/*.{js,jsx,ts,tsx}`,
],
theme: {
extend: {
backgroundColor: {
'dark_blue': '#1A4B7C',
'dark_green': '#15341C',
'dark_red': '#521414',
'light_gray': '#D9D7CF',
'taupe': '#C5C1B9',
},
colors: {
'dark_green': '#15341C',
'taupe': '#C5C1B9',
},
aspectRatio: {
'5/7': '5 / 7',
'3/2': '3 / 2',
},
fontSize: {
'text-sm_extra': '15px',
},
height: {
'home_banner': 'calc(100vh - 44px)',
'work_project': 'calc(100vh - 108px)'
},
maxHeight: {
'work_project': 'calc(100vh - 100px)'
},
maxWidth: {
'main': '1440px',
'wide': '1800px'
},
margin: {
'our_latest_work': 'calc((100vw - 1440px) / 2)'
}
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1440px',
}
},
plugins: [],
}