admin / Synapse-Sonar
publicAttack Surface Simulation
Synapse-Sonar / synapse-sonar / tailwind.config.ts
829 B · main
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 | import type { Config } from "tailwindcss"; // Synapse IronNode design tokens const config: Config = { content: [ "./app/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", ], theme: { extend: { colors: { space: "#05080f", panel: { DEFAULT: "#0f172a", light: "#1e293b" }, iron: { DEFAULT: "#94a3b8", light: "#f8fafc", dark: "#334155" }, synapse: { cyan: "#06b6d4", violet: "#8b5cf6", blue: "#3b82f6", }, }, fontFamily: { sans: ["Inter", "Segoe UI", "system-ui", "sans-serif"], mono: ["JetBrains Mono", "Consolas", "monospace"], }, boxShadow: { "glow-cyan": "0 0 20px -4px #06b6d4", "glow-violet": "0 0 20px -4px #8b5cf6", }, }, }, plugins: [], }; export default config; |