-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (58 loc) · 1.32 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
/** @type {import('tailwindcss').Config} */
// eslint-disable-next-line @typescript-eslint/no-var-requires
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
gray: {
0: '#1a1a1a',
1: '#313131',
2: '#484848',
3: '#5f5f5f',
4: '#767676',
5: '#8d8d8d',
6: '#a3a3a3',
7: '#bababa',
8: '#d1d1d1',
9: '#e8e8e8',
10: '#ffffff',
},
pink: {
0: '#750f32',
1: '#8c123b',
2: '#a31545',
3: '#ba814f',
4: '#d21b59',
5: '#e91e63',
6: '#eb3573',
7: '#ed4b82',
8: '#f06292',
9: '#f278a1',
10: '#f48fb1',
},
blue: {
0: '#294560',
1: '#315273',
2: '#396086',
3: '#426e9a',
4: '#4a7bad',
5: '#5289c0',
6: '#6395c6',
7: '#75a1cd',
8: '#86acd3',
9: '#97b8d9',
10: '#a9c4e0',
},
},
boxShadow: {
strong: '0 22px 70px 4px rgba(0, 0, 0, 0.35)',
},
fontFamily: {
sans: ['Nunito Sans', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [],
}