-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
47 lines (45 loc) · 1008 Bytes
/
tailwind.config.js
File metadata and controls
47 lines (45 loc) · 1008 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {
colors: {
orange : {
50:'#fac184',
60: '#EFA87B',
80:'#F4C5A6',
97:"#FCF1E8"
},
blue:{
50:"#3542B5",
60:"#4A56C7",
70:"#6872CF",
80:"#868ED8",
90:"#A4ABE1",
95:"#C3C7EC",
97:"#E1E3F5",
}
},
animation: {
'bounce-slow': 'bounce-slow 2s infinite ease-in-out',
},
keyframes: {
'bounce-slow': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
backgroundImage: {
'blob': "url('./src/assets/blob.svg)",
}
},
},
plugins: [],
safelist: [
'brand-red', // Add more classes as needed
// Patterns are also supported
'brand-*', // Safelists all brand color utilities
],
}