-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
75 lines (71 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: true,
},
future: {
// hoverOnlyWhenSupported: true,
},
safelist: [
'bg-work/[0.6]',
'bg-design/[0.6]',
'bg-photography/[0.6]',
'bg-diy/[0.6]',
'bg-coding/[0.6]',
'object-cover',
'object-contain',
],
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'primary': '#e95a3e',
'primary-tp': '#e95a3e99',
'secondary': '#0e4465',
'ternary': '#2573a1',
'dark-blue': '#2c3e50',
'very-dark-grey': '#202020',
'dark-grey': '#505050',
'light-grey': '#787878',
'lighter-grey': '#afafaf',
'dark-white': '#efefef',
'almost-white': '#f9f9f9',
'basically-white': '#fbfbfb',
'work': '#e95a3e',
'design': '#28da79',
'photography': '#2ab6ff',
'diy': '#ffe94d',
'coding': '#a62639',
},
height: {
'tile': '400px',
'nav': '192px',
'flg': '256px',
'fsm': '192px'
},
width: {
'maw': '1440px',
'mtw': '1280px',
},
boxShadow: {
'tile': '0 0 8px 0 rgba(0,0,0,0.07)',
'tooltip': '0 0 30px 0 rgba(0,0,0,0.1)'
}
},
screens: {
'sm': {max: '480px'},
// => @media (max-width: 640px) { ... }
'md': {max: '768px'},
// => @media (max-width: 768px) { ... }
'lg': {max: '1440px'},
// => @media (max-width: 1440px) { ... }
'xl': {max: '1680px'},
// => @media (max-width: 1680px) { ... }
}
},
plugins: [],
}