mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-06 19:18:22 +01:00
a32bc10981
* datepicker. add electron-rebuild sa dev dependency * comments * use <If> component for conditional renders * invoke callback on month change * individual inputs for date parts * keyboard support for input * more on keyboard support * dynamic setting of input width based on their text value * remove error if fromts is out of range * format is optional * undo electron-rebuild
87 lines
2.9 KiB
CSS
87 lines
2.9 KiB
CSS
/* Copyright 2024, Command Line Inc.
|
|
SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
@import "./default.css";
|
|
@import "./term-default.css";
|
|
@import "./term-light.css";
|
|
|
|
:root {
|
|
--app-bg-color: #fefefe;
|
|
--app-accent-color: rgb(75, 166, 57);
|
|
--app-accent-bg-color: rgba(75, 166, 57, 0.2);
|
|
--app-text-color: #000;
|
|
--app-text-primary-color: rgb(0, 0, 0, 0.9);
|
|
--app-text-secondary-color: rgb(0, 0, 0, 0.7);
|
|
--app-border-color: rgb(139 145 138);
|
|
--app-panel-bg-color: #e0e0e0;
|
|
--app-panel-bg-color-dev: #e0e0e0;
|
|
--app-icon-color: rgb(80, 80, 80);
|
|
--app-icon-hover-color: rgb(100, 100, 100);
|
|
--app-selected-mask-color: rgba(0, 0, 0, 0.06);
|
|
|
|
--input-bg-color: #eeeeee;
|
|
|
|
/* tab color */
|
|
--tab-white: rgb(0, 0, 0, 0.6);
|
|
--tab-mint: rgb(70, 235, 156);
|
|
|
|
/* button colors */
|
|
--button-text-color: rgb(50, 50, 50); /* Dark gray for light theme */
|
|
--button-primary-color: #fefefe;
|
|
--button-secondary-bg-color: rgba(200, 200, 200, 0.3); /* Semi-transparent light gray */
|
|
|
|
/* view colors */
|
|
--view-text-color: var(--app-text-color);
|
|
|
|
/* table colors */
|
|
--table-thead-border-top-color: rgba(0, 0, 0, 0.2);
|
|
--table-thead-border-bottom-color: rgba(0, 0, 0, 0.3);
|
|
--table-thead-bg-color: rgba(250, 250, 250, 0.15);
|
|
--table-tr-border-bottom-color: rgba(0, 0, 0, 0.15);
|
|
--table-tr-hover-bg-color: rgba(0, 0, 0, 0.15);
|
|
--table-tr-selected-bg-color: #dddddd;
|
|
--table-tr-selected-hover-bg-color: #cccccc;
|
|
|
|
/* form colors */
|
|
--form-element-border-color: rgba(0, 0, 0, 0.3);
|
|
--form-element-bg-color: var(--app-bg-color);
|
|
--form-element-text-color: var(--app-text-color);
|
|
--form-element-label-color: rgba(0, 0, 0, 0.6);
|
|
--form-element-secondary-color: rgba(0, 0, 0, 0.09);
|
|
--form-element-icon-color: rgb(0, 0, 0, 0.6);
|
|
--form-element-disabled-text-color: #b7b7b7;
|
|
--form-element-placeholder-color: #b7b7b7;
|
|
|
|
--markdown-bg-color: rgb(0, 0, 0, 0.1);
|
|
|
|
/* modal colors */
|
|
--modal-header-bottom-border-color: rgba(0, 0, 0, 0.3);
|
|
|
|
/* cmd input */
|
|
--cmdinput-textarea-bg-color: rgba(0, 0, 0, 0.1);
|
|
--cmdinput-textarea-border-color: var(--form-element-border-color);
|
|
|
|
/* scroll colors */
|
|
--scrollbar-background-color: var(--app-bg-color);
|
|
--scrollbar-thumb-color: rgba(0, 0, 0, 0.2);
|
|
--scrollbar-thumb-hover-color: rgba(0, 0, 0, 0.4);
|
|
|
|
/* line color */
|
|
--line-actions-bg-color: rgba(0, 0, 0, 0.1);
|
|
--line-actions-inactive-color: rgba(0, 0, 0, 0.3);
|
|
--line-actions-active-color: rgba(0, 0, 0, 1);
|
|
|
|
--logo-button-hover-bg-color: #f0f0f0;
|
|
|
|
--xterm-viewport-border-color: rgba(0, 0, 0, 0.3);
|
|
|
|
--datepicker-cell-hover-bg-color: #f0f0f0;
|
|
--datepicker-cell-other-text-color: rgba(0, 0, 0, 0.3);
|
|
--datepicker-header-fade-color: rgba(0, 0, 0, 0.4);
|
|
--datepicker-year-header-bg-color: #f5f5f5;
|
|
--datepicker-year-header-border-color: #dcdcdc;
|
|
|
|
/* toggle colors */
|
|
--toggle-thumb-color: var(--app-bg-color);
|
|
}
|