-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
61 lines (55 loc) · 1.02 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.tsx'],
theme: {
fontSize: {
xs: 14,
sm: 16,
md: 18,
lg: 20,
xl: 24,
'2xl': 32
},
colors: {
black: '#000000',
white: '#FFFFFF',
transparent: 'transparent',
gray: {
900: '#121214',
800: '#18181B',
700: '#202024',
400: '#7C7C8A',
200: '#C4C4CC',
100: '#E1E1E6',
},
cyan: {
400: '#AAE6FB',
500: '#81D8F7',
},
red: {
500: '#EF4444',
},
yellow: {
300: '#FDE047',
400: '#FACC15',
500: '#EAB308',
600: '#CA8A04',
},
violet: {
900: '#4C1D95'
}
},
extend: {
fontFamily: {
sans: 'Inter, sans-serif'
},
backgroundImage: {
'background-universe': 'url(./src/assets/background-universe.png)'
},
screens: {
'media-968': '968px'
}
},
},
plugins: [],
}