mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
73d52b24f2
This cleans up the unused/unnecessary css properties added around the same time as the modal component. This mostly refers to variables that started with --app. They have been removed and their uses have been replaced with other defaults. The --warning-color and --success-color properties still exist despite being unused since they seem to fit with the --error-color which is already in use.
26 lines
977 B
Plaintext
26 lines
977 B
Plaintext
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
:root {
|
|
--main-text-color: #f7f7f7;
|
|
--title-font-size: 18px;
|
|
--secondary-text-color: rgb(195, 200, 194);
|
|
--main-bg-color: #000000;
|
|
--border-color: #333333;
|
|
--base-font: normal 15px / normal "Lato", sans-serif;
|
|
--fixed-font: normal 12px / normal "Hack", monospace;
|
|
--accent-color: rgb(88, 193, 66);
|
|
--panel-bg-color: rgba(31, 33, 31, 1);
|
|
--highlight-bg-color: rgba(255, 255, 255, 0.2);
|
|
--markdown-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif,
|
|
"Apple Color Emoji", "Segoe UI Emoji";
|
|
--error-color: rgb(229, 77, 46);
|
|
--warning-color: rgb(224, 185, 86);
|
|
--success-color: rgb(78, 154, 6);
|
|
|
|
/* scrollbar colors */
|
|
--scrollbar-background-color: var(--main-bg-color);
|
|
--scrollbar-thumb-color: rgba(255, 255, 255, 0.3);
|
|
--scrollbar-thumb-hover-color: rgba(255, 255, 255, 0.5);
|
|
}
|