forked from jameschambers/boring-bits-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 744 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 744 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
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
// defaultLineHeights: true,
// standardFontWeights: true
},
purge: [],
theme: {
extend: {
colors: {
'internet-blue': {
'light': '#bfbfff',
'default': '#5452F6',
'dark': '#672ac5',
},
},
},
aspectRatio: { // defaults to {}
'none': 0,
'square': [1, 1], // or 1 / 1, or simply 1
'16/9': [16, 9], // or 16 / 9
'4/3': [4, 3], // or 4 / 3
'21/9': [21, 9], // or 21 / 9
},
fontFamily: {
'sans': ['Helvetica', 'Arial'],
},
},
variants: {},
plugins: [
require('tailwindcss-aspect-ratio'),
]
}