2025-02-05 01:58:36 +00:00
|
|
|
/* Copyright 2025, Command Line Inc.
|
|
|
|
|
SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
|
|
|
|
|
|
@import "tailwindcss";
|
2025-10-08 20:22:00 +00:00
|
|
|
@source "../node_modules/streamdown/dist/index.js";
|
2025-02-05 01:58:36 +00:00
|
|
|
|
|
|
|
|
@theme {
|
|
|
|
|
--color-background: rgb(34, 34, 34);
|
|
|
|
|
--color-foreground: #f7f7f7;
|
|
|
|
|
--color-white: #f7f7f7;
|
New AIPanel (#2370)
Massive PR, over 13k LOC updated, 128 commits to implement the first pass at the new Wave AI panel. Two backend adapters (OpenAI and Anthropic), layout changes to support the panel, keyboard shortcuts, and a huge focus/layout change to integrate the panel seamlessly into the UI.
Also fixes some small issues found during the Wave AI journey (zoom fixes, documentation, more scss removal, circular dependency issues, settings, etc)
2025-10-07 20:32:10 +00:00
|
|
|
--color-primary: #f7f7f7;
|
2025-02-05 01:58:36 +00:00
|
|
|
--color-muted-foreground: rgb(195, 200, 194);
|
|
|
|
|
--color-secondary: rgb(195, 200, 194);
|
New AIPanel (#2370)
Massive PR, over 13k LOC updated, 128 commits to implement the first pass at the new Wave AI panel. Two backend adapters (OpenAI and Anthropic), layout changes to support the panel, keyboard shortcuts, and a huge focus/layout change to integrate the panel seamlessly into the UI.
Also fixes some small issues found during the Wave AI journey (zoom fixes, documentation, more scss removal, circular dependency issues, settings, etc)
2025-10-07 20:32:10 +00:00
|
|
|
--color-muted: rgb(140, 145, 140);
|
2025-02-05 01:58:36 +00:00
|
|
|
--color-accent-50: rgb(236, 253, 232);
|
|
|
|
|
--color-accent-100: rgb(209, 250, 202);
|
|
|
|
|
--color-accent-200: rgb(167, 243, 168);
|
|
|
|
|
--color-accent-300: rgb(110, 231, 133);
|
|
|
|
|
--color-accent-400: rgb(88, 193, 66); /* main accent color */
|
|
|
|
|
--color-accent-500: rgb(63, 162, 51);
|
|
|
|
|
--color-accent-600: rgb(47, 133, 47);
|
|
|
|
|
--color-accent-700: rgb(34, 104, 43);
|
|
|
|
|
--color-accent-800: rgb(22, 81, 35);
|
|
|
|
|
--color-accent-900: rgb(15, 61, 29);
|
|
|
|
|
--color-error: rgb(229, 77, 46);
|
|
|
|
|
--color-warning: rgb(224, 185, 86);
|
|
|
|
|
--color-success: rgb(78, 154, 6);
|
|
|
|
|
--color-panel: rgba(31, 33, 31, 0.5);
|
|
|
|
|
--color-hover: rgba(255, 255, 255, 0.1);
|
|
|
|
|
--color-border: rgba(255, 255, 255, 0.16);
|
2025-02-08 00:11:40 +00:00
|
|
|
--color-modalbg: #232323;
|
|
|
|
|
--color-accentbg: rgba(88, 193, 66, 0.5);
|
|
|
|
|
--color-hoverbg: rgba(255, 255, 255, 0.2);
|
2025-10-09 23:29:09 +00:00
|
|
|
--color-highlightbg: rgba(255, 255, 255, 0.2);
|
2025-02-08 00:11:40 +00:00
|
|
|
--color-accent: rgb(88, 193, 66);
|
|
|
|
|
--color-accenthover: rgb(118, 223, 96);
|
2025-02-05 01:58:36 +00:00
|
|
|
|
|
|
|
|
--font-sans: "Inter", sans-serif;
|
|
|
|
|
--font-mono: "Hack", monospace;
|
New AIPanel (#2370)
Massive PR, over 13k LOC updated, 128 commits to implement the first pass at the new Wave AI panel. Two backend adapters (OpenAI and Anthropic), layout changes to support the panel, keyboard shortcuts, and a huge focus/layout change to integrate the panel seamlessly into the UI.
Also fixes some small issues found during the Wave AI journey (zoom fixes, documentation, more scss removal, circular dependency issues, settings, etc)
2025-10-07 20:32:10 +00:00
|
|
|
--font-markdown:
|
|
|
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji",
|
|
|
|
|
"Segoe UI Emoji";
|
2025-02-05 01:58:36 +00:00
|
|
|
|
|
|
|
|
--text-xxs: 10px;
|
|
|
|
|
--text-title: 18px;
|
|
|
|
|
--text-default: 14px;
|
|
|
|
|
|
|
|
|
|
--radius: 8px;
|
2025-02-19 20:16:59 +00:00
|
|
|
|
|
|
|
|
/* ANSI Colors (Default Dark Palette) */
|
|
|
|
|
--ansi-black: #757575;
|
|
|
|
|
--ansi-red: #cc685c;
|
|
|
|
|
--ansi-green: #76c266;
|
|
|
|
|
--ansi-yellow: #cbca9b;
|
|
|
|
|
--ansi-blue: #85aacb;
|
|
|
|
|
--ansi-magenta: #cc72ca;
|
|
|
|
|
--ansi-cyan: #74a7cb;
|
|
|
|
|
--ansi-white: #c1c1c1;
|
|
|
|
|
--ansi-brightblack: #727272;
|
|
|
|
|
--ansi-brightred: #cc9d97;
|
|
|
|
|
--ansi-brightgreen: #a3dd97;
|
|
|
|
|
--ansi-brightyellow: #cbcaaa;
|
|
|
|
|
--ansi-brightblue: #9ab6cb;
|
|
|
|
|
--ansi-brightmagenta: #cc8ecb;
|
|
|
|
|
--ansi-brightcyan: #b7b8cb;
|
|
|
|
|
--ansi-brightwhite: #f0f0f0;
|
New AIPanel (#2370)
Massive PR, over 13k LOC updated, 128 commits to implement the first pass at the new Wave AI panel. Two backend adapters (OpenAI and Anthropic), layout changes to support the panel, keyboard shortcuts, and a huge focus/layout change to integrate the panel seamlessly into the UI.
Also fixes some small issues found during the Wave AI journey (zoom fixes, documentation, more scss removal, circular dependency issues, settings, etc)
2025-10-07 20:32:10 +00:00
|
|
|
|
|
|
|
|
--container-xs: 300px;
|
|
|
|
|
--container-xxs: 200px;
|
|
|
|
|
--container-tiny: 120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--zoomfactor: 1;
|
|
|
|
|
--zoomfactor-inv: 1;
|
2025-02-05 01:58:36 +00:00
|
|
|
}
|
2025-08-22 21:29:30 +00:00
|
|
|
|
|
|
|
|
/* Chart tooltip styling for sysinfo plots */
|
|
|
|
|
svg [aria-label="tip"] g path {
|
|
|
|
|
color: var(--border-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Monaco editor scrollbar styling */
|
|
|
|
|
.monaco-editor .slider {
|
|
|
|
|
background: rgba(255, 255, 255, 0.4);
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
transition: background 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.monaco-editor .slider:hover {
|
|
|
|
|
background: rgba(255, 255, 255, 0.6);
|
|
|
|
|
}
|
New AIPanel (#2370)
Massive PR, over 13k LOC updated, 128 commits to implement the first pass at the new Wave AI panel. Two backend adapters (OpenAI and Anthropic), layout changes to support the panel, keyboard shortcuts, and a huge focus/layout change to integrate the panel seamlessly into the UI.
Also fixes some small issues found during the Wave AI journey (zoom fixes, documentation, more scss removal, circular dependency issues, settings, etc)
2025-10-07 20:32:10 +00:00
|
|
|
|
|
|
|
|
.ellipsis {
|
|
|
|
|
display: block;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
2025-10-13 23:39:37 +00:00
|
|
|
|
|
|
|
|
@keyframes float-up {
|
|
|
|
|
0% {
|
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: translate(-50%, -40px);
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|