-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (60 loc) · 1.54 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/api/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/config/**/*.{js,ts,jsx,tsx}",
"./src/const/**/*.{js,ts,jsx,tsx}",
"./src/hooks/**/*.{js,ts,jsx,tsx}",
"./src/layouts/**/*.{js,ts,jsx,tsx}",
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/types/**/*.{js,ts,jsx,tsx}",
"./src/utils/**/*.{js,ts,jsx,tsx}",
"./src/views/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
brand: {
50: '#FAFAFF',
100: '#F3F3FF',
200: '#E5E5FF',
300: '#DBDBFF',
400: '#C3C3FF',
500: '#A4A4FF',
600: '#7676FA',
700: '#6565E9',
800: '#4A4AD3',
900: '#2B2B9B',
},
green: {
450: '#31C48D',
550: '#0E9F6E',
},
'chat-bg': '#EEEEEE',
'chat-text': '#1F2D3D'
},
keyframes: {
'fade-in-up': {
'0%': {
opacity: '0',
transform: 'translateY(25%)'
},
'50%':{
},
'100%': {
opacity: '1',
transform: 'translateY(0)'
},
},
},
animation: {
'fade-in-up': 'fade-in-up 0.5s ease-out',
}
},
},
variants: {
extend: {},
},
plugins: [],
};