40 lines
834 B
JavaScript
40 lines
834 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
terminal: {
|
|
bg: "#232323",
|
|
text: "#e6edf3",
|
|
prompt: "#f97583",
|
|
command: "#79c0ff",
|
|
result: "#d2a8ff",
|
|
error: "#f97583",
|
|
accent: "#58a6ff",
|
|
},
|
|
},
|
|
fontFamily: {
|
|
mono: [
|
|
"Fira Code",
|
|
"JetBrains Mono",
|
|
"Consolas",
|
|
"Menlo",
|
|
"Monaco",
|
|
"monospace",
|
|
],
|
|
},
|
|
animation: {
|
|
"cursor-blink": "blink 1s step-end infinite",
|
|
},
|
|
keyframes: {
|
|
blink: {
|
|
"0%, 100%": { opacity: "1" },
|
|
"50%": { opacity: "0" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|