-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.ts
78 lines (77 loc) · 1.72 KB
/
tailwind.config.ts
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
73
74
75
76
77
78
import type { Config } from 'tailwindcss'
export default <Config>{
darkMode: 'class',
content: ['./src/**/*.vue'],
theme: {
extend: {
animation: {
text: 'text 5s ease infinite',
},
keyframes: {
text: {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center',
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center',
},
},
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
midnight: {
50: '#fff',
100: '#FAFAFA',
200: '#EAEAEA',
300: '#999',
400: '#888',
500: '#666',
600: '#444',
700: '#333',
800: '#111',
900: '#000',
},
error: {
lighter: '#F7D4D6',
light: '#FF1A1A',
DEFAULT: '#E00',
dark: '#C50000',
},
success: {
lighter: '#D3E5FF',
light: '#3291FF',
DEFAULT: '#0070F3',
dark: '#0761D1',
},
warning: {
lighter: '#FFEFCF',
light: '#F7B955',
DEFAULT: '#F5A623',
dark: '#AB570A',
},
violet: {
lighter: '#D8CCF1',
light: '#8A63D2',
DEFAULT: '#7928CA',
dark: '#4C2889',
},
cyan: {
lighter: '#AAFFEC',
light: '#79FFE1',
DEFAULT: '#50E3C2',
dark: '#29BC9B',
},
highlight: {
lighter: '#F81CE5',
light: '#EB367F',
DEFAULT: '#FF0080',
dark: '#FFF500',
},
},
},
},
}