- Added HTTP server with CORS support and various endpoints - Introduced http_tx/http_rx channels for HTTP server control - Cleaned up build.rs by removing commented code - Updated .gitignore to use *.rdb pattern instead of .rdb - Simplified capabilities.json to empty object - Improved UI initialization with better error handling - Reorganized module imports in main.rs - Added worker count configuration for HTTP server The changes introduce a new HTTP server capability while cleaning up and improving existing code structure. The HTTP server includes authentication, session management, and websocket support.
28 lines
731 B
CSS
28 lines
731 B
CSS
:root {
|
|
/* JazzAge Theme */
|
|
--background: 30 20% 10%;
|
|
--foreground: 40 30% 85%;
|
|
--card: 30 20% 15%;
|
|
--card-foreground: 40 30% 85%;
|
|
--popover: 30 20% 10%;
|
|
--popover-foreground: 40 30% 85%;
|
|
--primary: 20 80% 50%;
|
|
--primary-foreground: 40 30% 85%;
|
|
--secondary: 30 20% 20%;
|
|
--secondary-foreground: 40 30% 85%;
|
|
--muted: 30 20% 25%;
|
|
--muted-foreground: 40 30% 60%;
|
|
--accent: 200 80% 50%;
|
|
--accent-foreground: 40 30% 85%;
|
|
--destructive: 0 85% 60%;
|
|
--destructive-foreground: 0 0% 98%;
|
|
--border: 30 20% 20%;
|
|
--input: 30 20% 20%;
|
|
--ring: 20 80% 50%;
|
|
--radius: 0.5rem;
|
|
--chart-1: 20 80% 50%;
|
|
--chart-2: 200 80% 50%;
|
|
--chart-3: 350 80% 50%;
|
|
--chart-4: 140 80% 50%;
|
|
--chart-5: 260 80% 50%;
|
|
}
|