-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
84 lines (84 loc) · 1.85 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
blackrock: {
50: '#e7ecff',
100: '#d3dcff',
200: '#b0bcff',
300: '#8190ff',
400: '#4f52ff',
500: '#3828ff',
600: '#2c04ff',
700: '#2700ff',
800: '#2100d3',
900: '#200ba4',
950: '#090329',
},
aquamarine: {
50: '#e9fff7',
100: '#c9ffe9',
200: '#98ffd8',
300: '#65ffcd',
400: '#14f3b2',
500: '#00db9c',
600: '#00b381',
700: '#008f6b',
800: '#007156',
900: '#005c49',
950: '#00342a',
},
charcoal: '#232323',
mineshaft: '#333333',
dovegray: '#737373',
},
scale: {
40: '0.40',
120: '1.20',
},
keyframes: {
quiet: {
'25%': {
transform: 'scaleY(0.6)',
},
'50%': {
transform: 'scaleY(0.4)',
},
'75%': {
transform: 'scaleY(0.8)',
},
},
medium: {
'25%': {
transform: 'scaleY(1)',
},
'50%': {
transform: 'scaleY(0.4)',
},
'75%': {
transform: 'scaleY(0.6)',
},
},
loud: {
'25%': {
transform: 'scaleY(1)',
},
'50%': {
transform: 'scaleY(0.4)',
},
'75%': {
transform: 'scaleY(1.2)',
},
},
},
animation: {
quiet: 'quiet 1.2s ease-in-out infinite',
normal: 'medium 1.2s ease-in-out infinite',
loud: 'loud 1.2s ease-in-out infinite',
},
},
},
plugins: [],
};