generated from OneGraph/oneblog
-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
59 lines (58 loc) · 1.3 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: [
'./src/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/pages/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
blue: {
100: '#d4d7e5',
200: '#aaafcb',
300: '#7f87b1',
400: '#555f97',
500: '#2a377d',
600: '#222c64',
700: '#19214b',
800: '#111632',
900: '#080b19',
},
purple: {
100: '#dddbf3',
200: '#bbb7e6',
300: '#9a94da',
400: '#7870cd',
500: '#564cc1',
600: '#453d9a',
700: '#342e74',
800: '#221e4d',
900: '#110f27',
},
},
spacing: {
'16/9': '56.25%',
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
height: {
96: '24rem',
128: '32rem',
},
padding: {
128: '32rem',
},
},
},
variants: {
scale: ['responsive', 'hover', 'focus', 'group-hover'],
opacity: ['group-hover'],
},
plugins: [require('@tailwindcss/ui'), require('@tailwindcss/custom-forms')],
};