-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
54 lines (52 loc) · 1.3 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./*.html', './**/*.html'],
theme: {
extend: {
colors: {
'clay3': '#DA928A',
'secondary3': '#D50058'
},
backgroundColor: {
'white': '#FFFCFC',
'grey1': '#ECECEC',
'grey4': '#646464',
'black': '#000000',
'primary1': '#CCDFF1',
'primary2': '#005DB9',
'primary3': '#004A88',
'primary4': '#0C3B5D',
'secondary1': '#FCEBF2',
'secondary2': '#F7CCDE',
'secondary3': '#D50058',
'secondary4': '#701D45',
'clay1': '#F9F1EF',
'clay2': '#E4BAB4',
'clay3': '#DA928A',
'clay4': '#C76D61',
'sage1': '#BECEC3',
'sage2': '#A7BDB4',
'sage3': '#7D9C91',
'sage4': '#163029',
'autumn1': '#F6E2D3'
},
textColor: {
'primary3': '#004A88',
'primary4': '#0C3B5D',
'white': '#FFFCFC',
'black': '#000000',
'dark': '#646464',
'link': '#C12C90'
},
fontFamily: {
'serif': ['Crimson Pro', 'serif'],
'sans': ['StabilGrotesk', 'Roboto', 'sans-serif']
},
rotate: {
'-25': '-25deg',
'-30': '-30deg'
}
}
},
plugins: [require('tailwind-hamburgers')]
}