-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
43 lines (42 loc) · 936 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
boxShadow:{
"diag" : "10px 10px #EB6763",
"binder" : "10px 0px #EB6763",
"navigation" : "0px 10px #EB6763"
},
colors:{
"mainBackground" : "#1F1F1F",
"mainHighlight" : "#EB6763",
"github" : "#161B22",
"linkedin" : "#0A66C2",
"instagram" : "#E84E47",
},
fontFamily:{
"Biryani" : ["Biryani", "sans-serif"],
},
fontSize:{
"socialIcon" : "1.875rem",
"title" : "6rem"
},
transitionDuration:{
"0.5" : "0.5s",
},
width:{
"nav" : "10%",
"30%" : "30%",
"95%" : "95%"
}
},
},
safelist: [
{
pattern: /(text|bg|border)-(github|linkedin|instagram)/,
variants: ['hover'],
},
],
plugins: [],
}