This repository was archived by the owner on Oct 1, 2025. It is now read-only.
forked from DevDogs-UGA/DevDogs-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
74 lines (70 loc) · 1.81 KB
/
tailwind.config.js
File metadata and controls
74 lines (70 loc) · 1.81 KB
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
/** @type {import('tailwindcss').Config} */
const plugin = require("tailwindcss/plugin");
const CustomStyle = plugin(function ({ addUtilities }) {
addUtilities({
".rotate-y-180": {
transform: "rotateY(180deg)",
},
".preserve-3d": {
transformStyle: "preserve-3d",
},
".perspective-1000": {
perspective: "1000px",
},
".backface-hidden": {
backfaceVisibility: "hidden",
},
});
});
module.exports = {
darkMode: ["class"],
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}", // For src directory support
],
theme: {
extend: {
keyframes: {
fadeInOut: {
"0%, 100%": { opacity: 0 },
"20%, 50%, 80%": { opacity: 1 },
},
"caret-blink": {
"0%, 70%, 100%": { opacity: "1" },
"20%, 50%": { opacity: "0" },
},
},
animation: {
fadeInOut: "fadeInOut 10s ease-out infinite",
},
colors: {
BulldogRed: "#ba0c2f",
DevDogBlue: "#33334d",
BarelyPink: "#fff7f9",
NearlyBlack: "#23221f",
MidnightBlue: "#222233",
GloryGloryRed: "#e4002b",
PureWhite: "#ffffff",
SolidBlack: "#000000",
MudGray: "#64575a",
GroutGray: "#8a7d7d",
PebbleGray: "#aa999d",
Limestone: "#d4ccc8",
DustyPink: "#f2d9df",
BabyBlue: "#d9ecec",
LakeHerrick: "#00a3ad",
Gold: "#f9bd9b",
Peach: "#e37c7c",
Wave: "#71ccd2",
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
},
},
plugins: [CustomStyle, require("tailwindcss-animate")],
};