mcpengine/studio/apps/web/app/globals.css
Jake Shore 96e52666c5 MCPEngine full sync — studio scaffold, factory v2, server updates, state.json — 2026-02-12
=== NEW ===
- studio/ — MCPEngine Studio scaffold (Next.js monorepo, build plan)
- docs/FACTORY-V2.md — Factory v2 architecture doc
- docs/CALENDLY_MCP_BUILD_SUMMARY.md — Calendly MCP build report

=== UPDATED SERVERS ===
- fieldedge: Added jobs-tools, UI build script, main entry update
- lightspeed: Updated main + server entry points
- squarespace: Added collection-browser + page-manager apps
- toast: Added main + server entry points

=== INFRA ===
- infra/command-center/state.json — Updated pipeline state
- infra/command-center/FACTORY-V2.md — Factory v2 operator playbook
2026-02-12 17:58:33 -05:00

37 lines
816 B
CSS

@import "tailwindcss";
@source "../components/**/*.{ts,tsx}";
@source "../../../packages/ui/**/*.{ts,tsx}";
@source "../hooks/**/*.{ts,tsx}";
@source "../lib/**/*.{ts,tsx}";
:root {
--surface-0: #0A0F1E;
--surface-1: #111827;
--surface-2: #1F2937;
--surface-3: #374151;
--border: #374151;
--border-subtle: #1F2937;
--brand-primary: #6366F1;
--brand-primary-hover: #818CF8;
--brand-accent: #10B981;
--brand-accent-hover: #34D399;
--text-primary: #F9FAFB;
--text-secondary: #9CA3AF;
--text-tertiary: #6B7280;
--success: #10B981;
--warning: #F59E0B;
--error: #EF4444;
--info: #3B82F6;
}
body {
background: var(--surface-0);
color: var(--text-primary);
font-family: 'Inter Variable', 'Inter', system-ui, sans-serif;
}
code, pre {
font-family: 'JetBrains Mono', monospace;
}