mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-02 18:39:05 +01:00
d6124c27b6
* Unify color definitions and clean up light mode * consolidate form colors * increase border thickness on dropdown and text * remove dev conditional for theme * fix secondary form element color * increase dropdown border thickness * fix history textinput * make warning a bit darker * attempt to fix rotate icons * fix line actions bg * fix terminal colors * fix broken history colors * fix textinput label padding * fix bottom negative margin * updates for prompt colors. darken magenta, grey out the whites slightly, and sneak in a change for git co. * clean up prompt.tsx * fixing wobbly icons * center svg icon, simplify meta-line1
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: #bc3fbc;
|
|
--term-cyan: #06989a;
|
|
--term-white: #d0d0d0;
|
|
--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: #e7e7e7;
|
|
|
|
--term-gray: #8b918a; /* not an official terminal color */
|
|
--term-cmdtext: #ffffff;
|
|
--term-foreground: #d3d7cf;
|
|
--term-background: #000000;
|
|
}
|