-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (64 loc) · 1.59 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
colors: {
white: '#FFF',
'gray-100': '#DBDBDB',
'gray-200': '#D1D5DB',
'gray-300': '#AAA',
'orange-100': '#FFF7ED',
'orange-200': '#FFEAD0',
'orange-300': '#FFDDB2',
'orange-400': '#FFCC8D',
'orange-600': '#FF8C38',
'orange-700': '#DD7A32',
orange: '#E17654',
'green-100': '#115E59',
'black-100': '#4D4D4D',
'black-200': '#252525',
black: '#161616',
red: '#EC5962',
'red-100': '#D5394A',
green: '#7CC731',
},
extend: {
backgroundImage: {
'gradient-red': 'linear-gradient(180deg, #FEE6E5 0%, #FBD0D0 100%)',
'gradient-green': 'linear-gradient(180deg, #E6F6D1 0%, #CFEEA8 100%)',
},
keyframes: {
slideIn: {
from: {
transform: 'translateX(calc(100% + 1rem))',
},
to: {
transform: 'translateX(0)',
},
},
swipeOut: {
from: {
transform: 'translateX(var(--radix-toast-swipe-end-x))',
},
to: {
transform: 'translateX(calc(100% + 1rem))',
},
},
hide: {
from: {
opacity: '1',
},
to: {
opacity: '0',
},
},
},
animation: {
slideIn: 'slideIn 150ms cubic-bezier(0.16, 1, 0.3, 1)',
swipeOut: 'swipeOut 100ms ease-out',
hide: 'hide 100ms ease-in',
},
},
},
plugins: [],
}