-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
77 lines (77 loc) · 1.82 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
76
77
module.exports = {
mode: 'jit',
important: '#app',
purge: [],
theme: {
extend: {
colors: {
'teal-a-eye': '#0FD4C0',
charcoal: '#254053',
bgdiff: '#cacaca',
navy: '#394D73',
'navy-disabled': '#526790',
transteal: '#46B4A72C',
navbar: '#2B4B62',
offwhite: '#f2f2f2',
scrollBox: '#8D9DBA',
lightblue: '#CBD9F2',
darkblue: '#394D73',
moduleDarkBlue: '#010326',
modulePaleBlue: '#CBD9F2',
moduleTeal: '#0FD4C0',
moduleOffwhite: '#F2F2F2',
moduleNavy: '#394D73',
brightOrange: '#f15e2c',
lightNavy: '#5e76a2'
},
fontFamily: {
opensans: ['open sans', 'sans-serif'],
roboto: ['roboto', 'sans-serif'],
robotoMono: ['roboto-mono', 'sans-serif'],
},
fontSize: {
'3.5xl': ['32px'],
'7xl': ['72px'],
},
fontWeight: {
micro: 25,
},
backgroundImage: () => ({
about: 'url("../media/aboutPage/aboutCurve.svg")',
'landing-page':
'url("../media/landingPage/background_landing_page.svg")',
}),
backgroundSize: {
stretchBottom: '103% 50%',
},
borderRadius: {
module: '64px',
},
boxShadow: {
module: '12px 10px 19px rgba(0, 0, 0, 0.30)',
spacing: {
'500px': '500px',
},
},
top: {
'-1': '-1px',
},
maxHeight: {
xs: '20rem',
sm: '24rem',
md: '28rem',
lg: '32rem',
},
width: {
'35vw': '35vw',
},
},
variants: {
mixBlendMode: ['responsive'],
backgroundBlendMode: ['responsive'],
isolation: ['responsive'],
},
/* eslint-disable-next-line */
plugins: [require('tailwindcss-blend-mode')()],
},
};