Files
Remote-Terminal-for-MeshCore/frontend/tailwind.config.js
2026-02-12 12:44:08 -08:00

76 lines
2.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
darkMode: ["class"],
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
amber: {
400: "#fbbf24",
500: "#f59e0b",
600: "#d97706",
},
cyan: {
400: "#22d3ee",
500: "#06b6d4",
600: "#0891b2",
},
navy: {
800: "#141a2e",
900: "#0f1420",
950: "#0a0e1a",
},
},
borderRadius: {
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
xl: "calc(var(--radius) + 4px)",
},
boxShadow: {
'glow-amber': '0 0 15px -3px hsl(38 92% 50% / 0.3)',
'glow-amber-sm': '0 0 8px -2px hsl(38 92% 50% / 0.25)',
'glow-cyan': '0 0 15px -3px hsl(187 80% 42% / 0.3)',
'inner-glow': 'inset 0 1px 0 0 hsl(40 20% 88% / 0.05)',
},
},
},
plugins: [require("tailwindcss-animate")],
}