forked from sarcophagus-org/sarcophagus-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
78 lines (78 loc) · 1.63 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
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [
'src/**/*.js',
'src/**/*.jsx',
'src/**/*.ts',
'src/**/*.tsx',
'public/**/*.html',
],
theme: {
colors: {
gray: {
300: '#9A9A9A',
400: '#888293',
500: '#29262F',
600: '#0C0C0C',
900: '#060706',
},
background: 'rgb(11,11,11)',
black: 'rgb(0,0,0)',
green: '#4ECE3D',
red: '#CA3737',
white: '#E9E9E9',
yellow: '#FACA00',
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
},
},
screens: {
xs: '640px',
sm: '768px',
md: '1024px',
lg: '1152px',
},
extend: {
width: {
'128': '32rem', // 512 px
'112': '28rem', // 448 px
'104': '26rem', // 416 px
'27.5': '6.875rem' // 110 px
},
maxWidth: {
'128': '32rem', // 512 px
'104': '26rem', // 416 px
},
minWidth: {
'128': '32rem', // 512 px
'104': '26rem', // 416 px
},
fontFamily: {
sans: ['Roboto Mono'],
},
fontSize: {
'3xs': '0.5rem', // 8px
'2xs': '0.625rem', // 10px
sm: '0.8125rem', // 13px
md: '0.875rem', // 14px
base: '1rem', // 16px
lg: '1.25rem' // 20px
},
backgroundSize: {
'icon': '1.5rem'
}
},
},
variants: {},
plugins: [],
}