forked from ThatGuySam/doesitarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
100 lines (87 loc) · 2.97 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
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
module.exports = {
purge: {
enabled: process.env.NODE_ENV === 'production',
content: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js'
]
},
future: {
purgeLayersByDefault: true,
},
theme: {
container: {
center: true,
padding: '1.5rem',
},
extend: {
colors: {
// Color Generator
// https://coolors.co/362932-5f444b-ffa766-e3d8f1-f52f57-faff81
// 'red': '#b63a23', // Original
// 'red': 'rgb(232, 49, 81)', // Vibrant
// 'red': 'rgb(195, 47, 39)', // Close to original red
// 'red': 'rgb(239, 48, 84)', // More Vibrant
'red': 'rgb(245, 47, 87)', // More Vibrant
// 'dark': '#75413a',
'dark': '#34393f',
'darker': '#191a1d',
'darkest': '#121416',
// 'gold': '#d78649',
'gold': 'rgb(255, 167, 102)',
// 'gold': 'rgb(222, 115, 90)',
'orange': 'rgb(222, 115, 90)',
'off_white': '#ecebe6',
// Lightness
'white-1': 'rgba(255, 255, 255, 0.1)',
'white-2': 'rgba(255, 255, 255, 0.2)',
'white-3': 'rgba(255, 255, 255, 0.3)',
'white-4': 'rgba(255, 255, 255, 0.4)',
'white-5': 'rgba(255, 255, 255, 0.5)',
'white-6': 'rgba(255, 255, 255, 0.6)',
'white-7': 'rgba(255, 255, 255, 0.7)',
'white-8': 'rgba(255, 255, 255, 0.8)',
'white-9': 'rgba(255, 255, 255, 0.9)',
'black-1': 'rgba(0, 0, 0, 0.1)',
'black-7': 'rgba(0, 0, 0, 0.7)',
'black-9': 'rgba(0, 0, 0, 0.9)'
},
fontFamily: {
primary: 'Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
secondary: 'Inter, Georgia, Cambria, "Times New Roman", Times, serif',
},
letterSpacing: {
wide: '0.3em',
wider: '0.4em',
widest: '0.5em',
},
height: {
'1/2-screen': '50vh',
'full-screen': '100vh'
},
minHeight: {
'3/4-screen': '75vh',
},
spacing: {
'16/9': '56.25%'
},
inset: {
'1/2': '50%',
},
opacity: {
'10': '.1',
},
zIndex: {
'navbar': '400',
'main': '300'
}
}
},
variants: {
backgroundImage: ['responsive', 'hover']
},
plugins: []
}