-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
91 lines (91 loc) · 2.4 KB
/
tailwind.config.ts
File metadata and controls
91 lines (91 loc) · 2.4 KB
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
86
87
88
89
90
91
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'primary-300': '#328AD8',
'primary-500': '#005AAB',
'primary-700': '#003B70',
'secondary-500': '#48AD83',
'secondary-700': '#3D8567',
'neutral-100': '#EAECEE',
'neutral-200': '#D1D6DC',
'neutral-400': '#9399A1',
'neutral-900' : '#1C1C1C',
'success-500' : '#48AD83',
'warning-500' : '#F9AF42',
'error-500' : '#FF5959',
'error-700' : '#D43535',
'outline' : '#D1D6DC',
'surface': '#FCFCFC',
'surface-container' : '#EAECEE',
white: '#FCFCFC',
green_main: '#48AD83',
grey: '#C2C9D3',
grey_text: '#A3A3A3',
green_light: '#7AC0A3',
green_dark: '#3D8567',
blue_main: '#005AAB',
blue_light: '#499AE3',
blue_dark: '#074A87',
black: '#1C1C1C',
grey_bg: '#EDF1F6',
red_main: '#FF5959',
red_dark: '#d43535',
orange_main: '#F9AF42'
},
fontSize: {
sm: '0.8rem',
base: '1rem',
xl: '1.25rem',
'2xl': '1.563rem',
'2.5xl': '1.653rem',
'3xl': '1.953rem',
'4xl': '2.441rem',
'5xl': '3.052rem'
},
screen: {
md: '768px'
},
transitionProperty: {
width: 'width'
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
"blink": {
"0%, 100%": {
opacity: "0",
},
"50%": {
opacity: "1",
},
},
"up-down": {
"0%, 100%": {
transform: "translateY(0px)",
},
"50%": {
transform: "translateY(-30px)",
},
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
"blink": "blink 1s infinite",
"up-down": "up-down 3s ease-in-out infinite",
},
}
},
variants: {},
plugins: [require("tailwindcss-animate")]
// plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')]
}