-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (48 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{vue,js}"
],
theme: {
extend: {
dropShadow: {
'bloom': '0px 0px 172px rgba(255, 255, 255, 0.25)',
},
fontFamily: {
sans: ['Montserrat', 'sans-serif'],
tech: ['Tech', 'Montserrat', 'sans-serif'],
},
height: {
'h1': '3.5rem',
},
colors: {
'primary': '#1b1b1b',
'secondary': '#202020',
'important': '#f0f5ff',
'body': '#cbcbcb',
'border': '#62626234',
'border-dark': '#5e5e5e1f',
},
fontSize: {
'h1': '3.5rem',
'h2': '3rem',
'h3': '2.145rem',
'h4': '1.5rem',
'text-large': '1.6rem',
'text-medium': '1.275rem',
'text-small': '1.125rem',
},
borderRadius: {
'button': '0.5rem',
},
spacing: {
'gutter-nano': '0.5rem',
'gutter-small': '2rem',
'gutter-medium': '2.5rem',
'gutter-large': '3rem',
},
},
plugins: [],
}
}