mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-23 21:51:30 +01:00
baf00ac514
* light theme for button element * light them for connections view * remove box-shadows * light theme for textfield * unify form elements colors * light theme for modals * remove inset from modal box-shadow * light theme for tooltip * remove empty fies. theme new tab setting spacer * light theme for cmdinput * light theme for scroll * minor global color change * connections and history view light theme improvements * light them for line actions bg * light theme for sidebar actions * more on line themes and fixes * use font shorthand * use --form-element-* for all form elements colors * update/remove some cmdiput colors * update terminal colors for light mode * move term lightmode settings to new file (needs updates for more contrast) * lighten up panel color, remove 'dev' panel color for now (since we're testing light mode) --------- Co-authored-by: sawka <mike.sawka@gmail.com>
31 lines
882 B
CSS
31 lines
882 B
CSS
/* Copyright 2024, Command Line Inc.
|
|
SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
:root {
|
|
/*
|
|
* term colors (16 + 2) form the base terminal theme
|
|
* for consistency these colors should be used by plugins/applications
|
|
*/
|
|
--term-black: #000000;
|
|
--term-red: #cc0000;
|
|
--term-green: #4e9a06;
|
|
--term-yellow: #c4a000;
|
|
--term-blue: #3465a4;
|
|
--term-magenta: #75507b;
|
|
--term-cyan: #06989a;
|
|
--term-white: #d3d7cf;
|
|
--term-bright-black: #555753;
|
|
--term-bright-red: #ef2929;
|
|
--term-bright-green: #58c142;
|
|
--term-bright-yellow: #fce94f;
|
|
--term-bright-blue: #32afff;
|
|
--term-bright-magenta: #ad7fa8;
|
|
--term-bright-cyan: #34e2e2;
|
|
--term-bright-white: #ffffff;
|
|
|
|
--term-gray: #8b918a; /* not an official terminal color */
|
|
--term-cmdtext: #ffffff;
|
|
--term-foreground: #d3d7cf;
|
|
--term-background: #000000;
|
|
}
|