-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
76 lines (76 loc) · 1.82 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
74
75
76
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
colors: {
gatorblue: {
50: "#e5f3ff",
100: "#cfe9ff",
200: "#a9d4ff",
300: "#75b5ff",
400: "#3f83ff",
500: "#1452ff",
600: "#003bff",
700: "#003cff",
800: "#0036e3",
900: "#0021a5",
950: "#001166",
},
gatororange: "#FA4616",
bronze: {
50: "#f1e2d9",
100: "#e5c5b1",
200: "#daa886",
300: "#d08a4f",
400: "#b8722d",
500: "#985e25",
600: "#794b1d",
700: "#5b3816",
800: "#3f270f",
900: "#251709",
},
gold: {
50: "#fefde8",
100: "#fffcc2",
200: "#fff788",
300: "#ffe944",
400: "#fed711",
500: "#efbf04",
600: "#ce9300",
700: "#a46804",
800: "#87520c",
900: "#734310",
950: "#432205",
},
silver: {
50: "#f9f9f9",
100: "#f4f4f4",
200: "#eaeaea",
300: "#d4d4d4",
400: "#b4b4b4",
500: "#8c8c8c",
600: "#6b6b6b",
700: "#4c4c4c",
800: "#333333",
900: "#1f1f1f",
},
},
animation: {
marquee: "marquee 150s linear infinite",
marquee2: "marquee2 150s linear infinite",
"pause-marquee": "paused",
},
keyframes: {
marquee: {
"0%": { transform: "translateX(0%)" },
"100%": { transform: "translateX(-100%)" },
},
marquee2: {
"0%": { transform: "translateX(100%)" },
"100%": { transform: "translateX(0%)" },
},
},
},
},
};