-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
106 lines (100 loc) · 2.11 KB
/
tailwind.config.cjs
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
safelist: ['active'],
theme: {
fontFamily: {
header: ['Raleway', 'sans-serif'],
body: ['Open Sans', 'sans-serif'],
},
screens: {
xs: '375px',
...defaultTheme.screens,
},
colors: {
transparent: 'transparent',
primary: '#317EC3ff',
secondary: '#273B97ff',
'ao-english': '#31730Bff',
'african-violet': '#A287BCff',
'yellow-green-crayola': '#A5D66Cff',
'rich-black-fogra-29': '#0F1827ff',
'caput-mortuum': '#563030ff',
'green-ryb': '#70B823ff',
brandy: '#8B3835ff',
white: '#ffffff',
black: '#000000',
lila: '#e6e5ec',
'grey-10': '#6c6b6d',
'grey-20': '#7c7c7c',
'grey-30': '#919091',
'grey-40': '#929293',
'grey-50': '#f4f3f8',
'grey-60': '#edebf6',
'grey-70': '#d8d8d8',
'hero-gradient-from': '#317EC3ff',
'hero-gradient-to': '#273B97e7',
'blog-gradient-from': '#8f9098',
'blog-gradient-to': '#222222',
},
container: {
center: true,
padding: '1rem',
},
shadows: {
default: '0 2px 18px rgba(0, 0, 0, 0.06)',
md: '0 -3px 36px rgba(0, 0, 0, 0.12)',
},
extend: {
spacing: {
13: '3.25rem',
15: '3.75rem',
17: '4.25rem',
18: '4.5rem',
19: '4.75rem',
42: '10.5rem',
76: '19rem',
84: '21rem',
88: '22rem',
92: '23rem',
100: '25rem',
104: '26rem',
108: '27rem',
112: '28rem',
116: '29rem',
120: '30rem',
124: '31rem',
128: '32rem',
132: '33rem',
136: '34rem',
140: '35rem',
144: '36rem',
148: '37rem',
152: '38rem',
156: '39rem',
160: '40rem',
164: '41rem',
168: '42rem',
172: '43rem',
176: '44rem',
180: '45rem',
184: '46rem',
188: '47rem',
190: '48rem',
194: '49rem',
200: '50rem',
204: '51rem',
},
zIndex: {
'-1': '-1',
60: '60',
70: '70',
},
inset: {
'2/5': '40%',
},
},
},
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms'), require('@tailwindcss/aspect-ratio')],
};