- New mission-control Next.js app: runbook catalog, GO execution, SSE stream, audit ZIP export - Generated doc-manifest from docs runbooks; curated JSON specs; health-check script - pnpm workspace package, root scripts, README updates - Resilience: Windows-safe path checks, optional MISSION_CONTROL_PROJECT_ROOT fallback, system fonts - Bump mcp-proxmox submodule to tracked main Made-with: Cursor
46 lines
943 B
TypeScript
46 lines
943 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
const config: Config = {
|
|
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
tardis: {
|
|
deep: '#001a33',
|
|
panel: '#003b6f',
|
|
bright: '#0066cc',
|
|
glow: '#00b4d8',
|
|
amber: '#ffb703',
|
|
paper: '#f8fafc',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
display: [
|
|
'system-ui',
|
|
'Segoe UI',
|
|
'Roboto',
|
|
'Helvetica Neue',
|
|
'Arial',
|
|
'sans-serif',
|
|
],
|
|
mono: [
|
|
'ui-monospace',
|
|
'SFMono-Regular',
|
|
'Menlo',
|
|
'Monaco',
|
|
'Consolas',
|
|
'Liberation Mono',
|
|
'monospace',
|
|
],
|
|
},
|
|
boxShadow: {
|
|
tardis: '0 0 24px rgba(0, 180, 216, 0.35)',
|
|
panel: 'inset 0 1px 0 rgba(255, 255, 255, 0.06)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|