-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
93 lines (89 loc) · 2.76 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
85
86
87
88
89
90
91
92
93
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class'],
content: [
'./pages/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
'./app/**/*.{js,jsx}',
'./src/**/*.{js,jsx}',
],
prefix: '',
theme: {
colors: {
'purple.1': '#F5F5FB',
'purple.2': '#DBDBEB',
'purple.3': '#E3E6FF',
'purple.4': '#939AFE',
'purple.5': '#5D6BFF',
'purple.6': '#5060FF',
'purple.7': '#3C4DFF',
'white.1': '#FFFFFF',
'white.2': '#F5F5F5',
'white.3': '#A9ABC2',
'white.4': '#4B4C57',
'white.5': '#2E2F34',
'error.1': '#FF7B7B',
'error.2': '#FF3838',
'error.3': '#F42D2D',
'teste.1': '#5C6089',
'teste.2': '#5058AE',
'success': '#93D724',
},
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px',
},
},
extend: {
fontSize: {
'7xl': '5rem',
'6xl': '4rem',
'5xl': '3rem',
'4xl': '2rem',
'3xl': '1.5rem',
'2xl': '1.25rem',
'xl': '1rem',
'lg': '0.875rem',
'md': '0.75rem',
'sm': '0.625rem',
'xs': '0.5rem',
},
padding: {
"lg": "1.5rem",
"md": "1rem",
"sm": "0.5rem",
},
gap: {
"xl": "2rem",
"lg": "1.5rem",
"md": "1.25rem",
"sm": "0.75rem",
"xs": "0.50rem",
"2xs": "0.25rem",
},
boxShadow: {
"lg": "8px 8px 32px 0px rgba(80, 96, 255, 0.16) , -8px -8px 32px 0px rgba(255, 255, 255, 1)",
"md": "0px 4px 16px 0px rgba(92, 96, 137, 0.16)",
"sm": "0px 1px 2px 0px rgba(92, 96, 137, 0.16)",
"header": "0px 0px 32px 0px rgba(28,43,204, 0.12)",
},
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' },
},
},
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out',
},
},
},
plugins: [require('tailwindcss-animate')],
}