Files
netrunner-backend/frontend/tailwind.config.js
T
2026-04-19 17:15:50 +07:00

36 lines
729 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
background: "#0B0D17",
foreground: "#F8FAFC",
primary: {
DEFAULT: "#8B3DFF",
foreground: "#FFFFFF",
},
secondary: {
DEFAULT: "#00E5F2",
foreground: "#000000",
},
muted: {
DEFAULT: "#1E2136",
foreground: "#A0AEC0",
},
border: "#2A2E45",
card: {
DEFAULT: "rgba(22, 25, 43, 0.6)",
},
},
fontFamily: {
mono: ['"JetBrains Mono"', 'monospace'],
},
},
},
plugins: [],
}