generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
65 lines (64 loc) · 1.54 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,jsx}'],
theme: {
extend: {
fontFamily: {
'work-sans': ['Work Sans', 'sans-serif'],
roboto: ['Roboto', 'sans-serif'],
},
colors: {
light: '#8A8A8A',
'primary-violet': '#7D41E3',
grey: '#757575',
black: '#33293B',
disabled: '#919191',
'light-violet': '#F7EFFF',
'light-grey': '#f7f7f7',
'dark-violet': '#542E96',
'hover-violet': '#9767E8',
gold: '#FFC450',
},
width: {
17: '71px',
},
borderWidth: {
1: '1.41px',
},
padding: {
17: '4.5rem',
},
borderRadius: {
'5p': '5.62px',
},
zIndex: {
high: '1010',
},
height: { cta: '3.4375rem' },
boxShadow: {
big: '0px 0px 36px rgba(0,0,0,0.04)',
small: '0px -1px 36px rgba(0,0,0,0.04)',
'card-shadow': '0px 0px 36px 0px rgba(0, 0, 0, 0.04)',
},
backgroundImage: {
tree: 'url("./assets/tree.webp")',
'custom-gradient':
'linear-gradient(0deg, #ECECEC 0%, #ECECEC 100%), #ECECEC',
'order-bg': 'url("./assets/order-bg.svg")',
},
backgroundSize: {
sm: '20px',
},
keyframes: {
'accordion-down': {
from: { height: '0' },
to: { height: '380px' },
},
},
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
},
},
},
plugins: [],
};