-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
executable file
·40 lines (39 loc) · 996 Bytes
/
tailwind.config.js
File metadata and controls
executable file
·40 lines (39 loc) · 996 Bytes
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
/** @type {import('tailwindcss').Config} */
const config = {
content: [
"./src/app/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
sans: ["var(--font-jetbrains-mono)"],
mono: ["var(--font-jetbrains-mono)"],
pixel: ["var(--font-pixelify-sans)"],
},
colors: {
background: "#000000",
foreground: "#ffffff",
},
animation: {
"pulse-slow": "pulse 8s cubic-bezier(0.4, 0, 0.6, 1) infinite",
"pulse-slower": "pulse 12s cubic-bezier(0.4, 0, 0.6, 1) infinite",
float: "float 15s ease-in-out infinite",
},
keyframes: {
float: {
"0%, 100%": { transform: "translateY(0) scale(1)" },
"50%": { transform: "translateY(-20px) scale(1.05)" },
},
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
},
boxShadow: {
glow: "0 0 10px 2px rgba(52, 211, 153, 0.8)", // for glow
},
},
},
plugins: [],
};
export default config;