-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 815 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (37 loc) · 815 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
boxShadow: {
'bar': '0 0 10px 5px rgba(255, 236, 175, 0.7)',
'thin': '0 0 0 0.6px #565656'
},
borderColor: {
primary: '#af9f83',
},
animation: {
'slide-out-right': 'slide-out-right 0.5s ease-out'
},
keyframes: {
'slide-out-right': {
'0%': {
transform: 'translateX(0)',
opacity: 1,
},
'100%': {
transform: 'translateX(100%)',
opacity: 0,
}
}
},
backgroundImage: {
'bt': 'linear-gradient(to bottom, #694625, #211f19)',
}
},
},
plugins: [],
}