-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
65 lines (65 loc) · 1.56 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
module.exports = {
content: [
"./public/index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
padding: '1rem',
},
fontFamily: {
'sans': ['Orbitron', 'sans-serif'],
'serif': ['Orbitron', 'sans-serif'],
'mono': ['Orbitron', 'sans-serif'],
'display': ['Orbitron', 'sans-serif'],
'body': ['Orbitron', 'sans-serif'],
},
extend: {
animation: {
'spin-slow': 'spin 3s linear infinite',
},
colors:{
'red': '#e63946',
'blue': {
'lightest': '#f1faee',
'light': '#a8dadc',
DEFAULT: '#457b9d',
'dark': '#1d3557'
},
'yellow': {
'light': '#dbd9a9',
DEFUALT: '#e5ac3c'
},
'green': {
DEFAULT: '#21a53d',
'dark': '#1c8c34',
'darkest': '#1d5634'
},
'black': '#000000',
'white': '#FFFFFF'
},
height:{
'600': '600px'
},
minHeight:{
'600': '600px',
'850': '850px',
'1000': '1000px'
},
maxWidth:{
'280': '280px'
},
maxHeight:{
'280': '280px'
},
spacing:{
'full': '100%',
'half': '50%'
}
},
},
plugins: [
require('@tailwindcss/forms'),
],
}