- Vue 3 + TypeScript + Vite project structure - Element Plus UI components with dark theme - Pinia state management for agents and tasks - JSPlumb integration for visual workflow editing - SVG icon system for agent roles - Axios request layer with API proxy configuration - Tailwind CSS for styling - Docker deployment with Caddy web server - Complete development toolchain (ESLint, Prettier, Vitest) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
311 B
SCSS
16 lines
311 B
SCSS
:root {
|
|
--color-bg: #fff;
|
|
--color-bg-secondary: #fafafa;
|
|
--color-bg-tertiary: #f5f5f5;
|
|
--color-text: #000;
|
|
}
|
|
|
|
html.dark {
|
|
--color-bg: #131A27;
|
|
--color-bg-secondary: #050505;
|
|
--color-bg-tertiary: #20222A;
|
|
--color-bg-quaternary: #24252A;
|
|
--color-text: #fff;
|
|
--color-text-secondary: #C9C9C9;
|
|
}
|