-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
71 lines (71 loc) · 1.72 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: {
25: '#FCFCFC',
50: '#F9F3EB',
100: '#F6EFE4',
200: '#EDE1D1',
300: '#E5D5C0',
400: '#DEC9B0',
500: '#C9B597',
600: '#8d6d42',
700: '#0D3C26',
800: '#F3EADD',
},
neutral: {
50: '#FAF3EA',
100: '#F2E9DB',
200: '#EAE0D1',
300: '#E2D6C7',
400: '#D9CCBD',
500: '#6B6255',
600: '#4D473E',
700: '#2F2B26',
800: '#1A1815',
900: '#0D0C0A',
},
success: {
50: '#ECFDF3',
400:"#1C3B28",
500: '#038247',
600: '#026435',
700: '#01421F',
},
selected:{
50:"#DCB7F5"
}
},
fontSize: {
'h-s': ['1rem', '1.5rem'],
'h-m': ['1.25rem', '1.75rem'],
'h-l': ['1.5rem', '2rem'],
'h-xl': ['2rem', '2.5rem'],
'body-s': ['0.875rem', '1.25rem'],
'body-m': ['1rem', '1.5rem'],
'body-l': ['1.125rem', '1.75rem'],
'action-s': ['0.875rem', '1rem'],
'action-m': ['1rem', '1.25rem'],
'action-l': ['1.125rem', '1.5rem'],
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeOut: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
},
},
animation: {
fadeIn: 'fadeIn 1.8s ease-out forwards',
fadeOut: 'fadeOut 1.8s ease-out forwards',
},
},
},
plugins: [],
}