-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
85 lines (85 loc) · 2.69 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
73
74
75
76
77
78
79
80
81
82
83
84
85
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
neutral: {
50: '#e6e6ea',
100: '#e6e6ea',
200: '#e6e6ea',
300: '#e6e6ea',
400: '#a9a7b4',
500: '#676374',
600: '#514d5b',
700: '#403c48',
800: '#33313a',
900: '#2c2b31',
950: '#201F24',
},
purple: {
50: '#f9f5fc',
100: '#f6edfc',
200: '#e6d2f7',
300: '#d3b6f2',
400: '#a984e8',
500: '#7855de',
600: '#6244c7',
700: '#482ea6',
800: '#331e85',
900: '#201163',
950: '#100740',
},
},
// Animations
keyframes: {
fadein: {
'0%': {
opacity: '0',
},
'100%': {
opacity: '100',
},
},
'slide-in-left': {
'0%': {
transform: 'translateX(-300px)',
opacity: '0',
},
'100%': {
transform: 'translateX(0px)',
opacity: '1',
},
},
'slide-in-right': {
'0%': {
transform: 'translateX(300px)',
opacity: '0',
},
'100%': {
transform: 'translateX(0px)',
opacity: '1',
},
},
'slide-down': {
'0%': {
transform: 'translateY(-300px)',
opacity: '0',
},
'100%': {
transform: 'translateY(0px)',
opacity: '1',
},
},
},
animation: {
fadein: 'fadein 0.3s ease-in-out',
'slide-in-left': 'slide-in-left 0.3s ease-in-out',
'slide-in-right': 'slide-in-right 0.3s ease-in-out',
'slide-down': 'slide-down 0.3s ease-in-out',
},
},
},
plugins: [],
};