-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
72 lines (72 loc) · 1.52 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
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#000000',
white: '#ffffff',
primary: {
100: '#fbeaf0',
200: '#ffcbde',
300: '#ffa4c5',
400: '#fb6c9f',
500: '#ff3b80',
600: '#af1850',
700: '#660c2d',
800: '#300515',
900: '#1a000f',
},
grey: {
100: '#f1f1f1',
200: '#c5c5c5',
300: '#a8a8a8',
400: '#8b8b8b',
500: '#6e6e6e',
600: '#525252',
700: '#383838',
800: '#292929',
900: '#151515',
},
green: {
100: '#eafcf9',
200: '#c0f6ee',
300: '#97f0e2',
400: '#6dead6',
500: '#2ee1c5',
600: '#25b49e',
700: '#1c8776',
800: '#0e433b',
900: '#051614',
},
red: {
500: '#DC2626',
},
},
fontFamily: {
sans: [
'"Space Grotesk"',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'sans-serif',
],
mono: [
'ui-monospace',
'SFMono-Regular',
'Menlo',
'Monaco',
'Consolas',
'"Liberation Mono"',
'"Courier New"',
'monospace',
],
},
},
plugins: [require('@tailwindcss/typography')],
};