forked from dojoengine/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
57 lines (57 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
animation: {
spotlight: "spotlight 2s ease .75s 1 forwards",
},
keyframes: {
spotlight: {
"0%": {
opacity: 0,
transform: "translate(-72%, -62%) scale(0.5)",
},
"100%": {
opacity: 1,
transform: "translate(-50%,-40%) scale(1)",
},
},
},
borderWidth: {
8: "8px",
},
borderRadius: {
"4xl": "2rem",
},
colors: {
primary: "#321CC4",
secondary: "#151768",
tertiary: "#6452DE",
black: "#03152E",
text: {
black: "#03152E",
purple: "#614BF8",
},
button: {
purple: "#321CC4",
},
badge: {
yellow: "#FBCB4A",
fuchsia: "#F568D6",
red: "#FD4544",
teal: "#6FCCBB",
blue: "#1936A1",
},
background: {
dark: "#021531",
purple: "#1B1579",
},
stroke: {
purple: "#4E38E1",
},
},
},
},
plugins: [],
};