-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (40 loc) · 928 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (40 loc) · 928 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'regal-blue': '#243c5a',
'nav-grey': '#191919',
'cadet': '#171738',
'federal': '#2E1760',
'zaffre': '#3423A6',
'glucose': '#7180B9',
'honeydue-shade': '#fcfefc',
'honeydue': '#DFF3E4',
'bluer': '#183153',
'honeydue-transparent': 'rgba(240, 230, 140, 0.3)',
'glucose-transparent': 'rgba(113, 128, 185, 0.2)'
},
spacing: {
'13': '45px',
'23': '90px',
'26': '80px',
'30': '120px',
'37': '145px',
'70': '280px',
'99': '400px',
'final': '208px',
'h2': '500px',
'login-h': '500px',
'100': '550px'
},
borderRadius: {
'home': '100px'
}
},
},
plugins: [],
}