-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
59 lines (58 loc) · 1.36 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
/** @type {import('tailwindcss').Config} */
export const content = ['./src/**/*.{js,ts,jsx,tsx}'];
export const theme = {
extend: {
colors: {
dark: '#5e5e5e',
light: '#f2ecff',
error: {
200: '#f4c6dd',
300: '#ef4444',
DEFAULT: '#d41976',
},
smoky: {
50: '#f6f6f6',
100: '#e7e7e7',
200: '#d1d1d1',
300: '#b0b0b0',
400: '#888888',
500: '#6d6d6d',
600: '#5d5d5d',
700: '#4f4f4f',
800: '#454545',
900: '#3d3d3d',
DEFAULT: '#303030',
},
seagreen: {
50: '#eafff7',
100: '#cdfee9',
200: '#a0fad8',
300: '#63f2c5',
400: '#25e2ac',
500: '#00a47b',
600: '#008367',
700: '#006752',
800: '#005545',
900: '#003028',
DEFAULT: '#00c896',
},
},
keyframes: {
jelly: {
'0%,100%': { transform: 'scale(1, 1)' },
'25%': { transform: 'scale(0.95, 1.05)' },
'50%': { transform: 'scale(1.05, 0.95)' },
'75%': { transform: 'scale(0.95, 1.05)' },
},
},
animation: {
jelly: 'jelly 0.5s',
},
animationDuration: {
1500: '1500ms',
2000: '2000ms',
2500: '2500ms',
},
},
};
export const plugins = [require('tailwindcss-animate'), require('@tailwindcss/typography')];