forked from sigstore/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (44 loc) · 943 Bytes
/
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
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
defaultLineHeights: true,
standardFontWeights: true
},
// corePlugins: {
// container: false,
// }
theme: {
extend: {
fontFamily: {
bold: ['GT Maru Medium','sans-serif'],
},
colors: {
primary: {
50: '#FBFBFB',
100: '#F7F7F7',
200: '#EAEAEA',
300: '#DDDDDD',
400: '#C4C4C4',
500: '#6349FF',
600: '#9A9A9A',
700: '#676767',
800: '#4D4D4D',
900: '#333333',
},
grey: {
50: '#FBFBFB',
100: '#F7F7F7',
200: '#EAEAEA',
300: '#DDDDDD',
400: '#C4C4C4',
500: '#6349FF',
600: '#9A9A9A',
700: '#676767',
800: '#4D4D4D',
900: '#333333',
},
}
}
}
};