-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (49 loc) · 1.57 KB
/
Copy pathtailwind.config.js
File metadata and controls
49 lines (49 loc) · 1.57 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
terminal: {
DEFAULT: "#0A0A0A",
text: "#F8F8F2",
comment: "#6D6D6D",
selection: "#1F1F1F",
purple: "#BA88AF", // Brightened mauve
cyan: "#5B7A86", // Brightened slate blue
green: "#7A8C76", // Brightened sage
orange: "#D19973", // Brightened dusty rose
red: "#A15454", // Brightened burgundy
},
},
fontFamily: {
mono: ["Fira Code", "JetBrains Mono", "monospace"],
sans: ["Inter", "system-ui", "sans-serif"],
},
animation: {
"text-reveal": "reveal 1.5s ease-in-out",
},
keyframes: {
reveal: {
"0%": {
opacity: 0,
transform: "translateY(10px)",
},
"100%": {
opacity: 1,
transform: "translateY(0)",
},
},
},
backgroundImage: {
"grid-pattern":
"url(\"data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E\")",
},
},
},
plugins: [],
};