-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
73 lines (72 loc) · 1.88 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
sl: "500px",
},
fontFamily: {
inter: "var(--font-inter)",
"ubuntu-mono": "var(--font-ubuntu-mono)",
"fira-code": "var(--font-fira-code)",
},
colors: {
gray: "#B4BAC6",
purple: "#C778DD",
"sky-blue": "#62AEEF",
yellow: "#E5C07A",
body: "#282C33",
teal: "#55B6C2",
header: "rgba(44 ,40, 51, 0.8)",
bright: "#E06B74",
"sky-blue": "#62AEEF",
yellow: "#E5C07A",
},
backgroundImage: {
dots: 'url("/dots.svg")',
"two-dots": '[url("/dots.svg"), url("/dots.svg")]',
shine:
"linear-gradient(270deg, #C778DD -7.86%, rgba(201, 0, 193, 0.00) 91.6%)",
},
backgroundSize: {
small: "10rem 100%",
smallest: "4rem 50%",
normal: "50%",
},
boxShadow: {
ml: "-3px -3px 3px #C778DD",
},
animation: {
nav: "slide 0.5s ease-in-out forwards 1",
move: "button 1s ease-in-out infinite",
fadeIn: "fadeIn 0.4s linear",
},
keyframes: {
slide: {
"0%": { left: "20%", right: "30%" },
"50%": { left: "10%", right: "20%" },
"100%": { left: "5%", right: "5%" },
},
button: {
"0%": { borderLeftColor: "#E5C07A" },
"50%": { borderRightColor: "#E5C07A" },
"75%": { borderTopColor: "#E5C07A" },
"100%": { borderBottomColor: "#E5C07A" },
},
fadeIn: {
from: {
transform: "translateY(30%)",
opacity: 0,
scale: 0.8,
},
},
},
},
},
plugins: [],
};