2024-03-01 09:01:23 +01:00
|
|
|
/* Copyright 2024, Command Line Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0 */
|
2024-02-24 22:13:57 +01:00
|
|
|
|
2024-03-08 06:32:48 +01:00
|
|
|
@import url("./term-default.css");
|
2024-03-05 01:27:34 +01:00
|
|
|
@import url("./term-dark.css");
|
|
|
|
|
2024-02-24 22:13:57 +01:00
|
|
|
:root {
|
|
|
|
--fa-style-family: "Font Awesome 6 Sharp";
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* these variables are overridden by user settings */
|
2024-03-05 08:33:54 +01:00
|
|
|
/*
|
2024-03-05 01:27:34 +01:00
|
|
|
--termfontfamily: "Hack";
|
|
|
|
--termfontsize: 13px;
|
2024-03-05 08:33:54 +01:00
|
|
|
--termlineheight: 15px;
|
|
|
|
--termpad: 7px;
|
2024-03-05 01:27:34 +01:00
|
|
|
--termfontsize-sm: 11px;
|
2024-03-05 08:33:54 +01:00
|
|
|
--termlineheight-sm: 13px;
|
|
|
|
*/
|
2024-02-24 22:13:57 +01:00
|
|
|
|
2024-03-05 02:05:05 +01:00
|
|
|
/* base fonts */
|
2024-03-06 21:33:01 +01:00
|
|
|
--base-font: normal 15px / normal "Lato", sans-serif;
|
2024-03-01 06:40:01 +01:00
|
|
|
|
|
|
|
--title-font-size: 18px;
|
|
|
|
--input-bg-color: #171717;
|
|
|
|
--input-placeholder-color: #777;
|
|
|
|
|
2024-02-27 18:09:03 +01:00
|
|
|
--fixed-font: "Martian Mono", sans-serif;
|
|
|
|
--terminal-font: "JetBrains Mono", sans-serif;
|
|
|
|
--text-s1-font: "Martian Mono", sans-serif;
|
|
|
|
--markdown-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif,
|
|
|
|
"Apple Color Emoji", "Segoe UI Emoji";
|
|
|
|
|
2024-02-28 01:26:58 +01:00
|
|
|
--markdown-font-size: 14px;
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
--screentabs-height: 38px; /* magic */
|
|
|
|
--screentabs-line-height: 21px; /* magic */
|
2024-03-01 06:40:01 +01:00
|
|
|
--screentabs-font-size: 15px;
|
|
|
|
--screentabs-font-weight: normal;
|
|
|
|
--screentabs-selected-font-weight: bold;
|
2024-02-29 03:25:37 +01:00
|
|
|
--screen-tab-width: 11.4em;
|
2024-02-27 08:55:45 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* floating logo settings */
|
2024-03-04 20:55:43 +01:00
|
|
|
--floating-logo-width-darwin: 105px;
|
2024-02-28 03:21:00 +01:00
|
|
|
--floating-logo-width: 40px;
|
|
|
|
--floating-logo-height: var(--screentabs-height);
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* global colors */
|
2024-02-28 06:31:58 +01:00
|
|
|
--app-bg-color: black;
|
2024-02-24 22:13:57 +01:00
|
|
|
--app-accent-color: rgb(88, 193, 66);
|
2024-03-07 04:15:51 +01:00
|
|
|
--app-accent-bg-color: rgba(88, 193, 66, 0.2);
|
2024-03-08 06:32:48 +01:00
|
|
|
--app-error-color: rgb(229, 77, 46);
|
|
|
|
--app-warning-color: rgb(224, 185, 86);
|
|
|
|
--app-success-color: rgb(78, 154, 6);
|
2024-02-26 08:21:23 +01:00
|
|
|
--app-text-color: rgb(211, 215, 207);
|
|
|
|
--app-text-primary-color: rgb(255, 255, 255);
|
|
|
|
--app-text-secondary-color: rgb(195, 200, 194);
|
|
|
|
--app-border-color: rgb(51, 51, 51);
|
2024-02-26 22:58:32 +01:00
|
|
|
--app-maincontent-bg-color: #333;
|
2024-02-29 03:23:14 +01:00
|
|
|
--app-panel-bg-color: rgba(21, 23, 21, 1);
|
|
|
|
--app-panel-bg-color-dev: rgb(21, 23, 48);
|
2024-03-05 02:05:05 +01:00
|
|
|
--app-icon-color: rgb(139, 145, 138);
|
|
|
|
--app-icon-hover-color: #fff;
|
|
|
|
|
|
|
|
/* icon colors */
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-04 20:55:43 +01:00
|
|
|
/* just for macos */
|
|
|
|
--app-border-radius-darwin: 10px;
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* global generic colors */
|
2024-02-26 08:21:23 +01:00
|
|
|
--app-black: rgb(0, 0, 0);
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* scrollbar colors */
|
|
|
|
/* --scrollbar-background-color: rgba(21, 23, 21, 1); */
|
2024-03-08 06:32:48 +01:00
|
|
|
--scrollbar-background-color: var(--app-bg-color);
|
|
|
|
--scrollbar-thumb-color: rgba(255, 255, 255, 0.3);
|
|
|
|
--scrollbar-thumb-hover-color: rgba(255, 255, 255, 0.5);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* code color */
|
2024-02-26 08:21:23 +01:00
|
|
|
--pre-bg-color: rgb(0, 0, 0);
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* tab colors */
|
2024-02-26 08:21:23 +01:00
|
|
|
--tab-red: rgb(229, 77, 46);
|
|
|
|
--tab-orange: rgb(239, 113, 59);
|
|
|
|
--tab-yellow: rgb(224, 185, 86);
|
|
|
|
--tab-green: rgb(88, 193, 66);
|
|
|
|
--tab-mint: rgb(75, 255, 169);
|
|
|
|
--tab-cyan: rgb(75, 223, 255);
|
|
|
|
--tab-blue: rgb(57, 113, 255);
|
|
|
|
--tab-violet: rgb(186, 118, 255);
|
|
|
|
--tab-pink: rgb(224, 86, 119);
|
|
|
|
--tab-white: rgb(255, 255, 255);
|
|
|
|
|
2024-03-05 02:05:05 +01:00
|
|
|
--form-element-border-color: rgba(241, 246, 243, 0.15);
|
|
|
|
--form-element-bg-color: var(--app-bg-color);
|
2024-03-08 06:32:48 +01:00
|
|
|
--form-element-text-color: var(--app-text-primary-color);
|
|
|
|
--form-element-label-color: var(--app-text-secondary-color);
|
|
|
|
--form-element-primary-color: var(--app-accent-color);
|
|
|
|
--form-element-secondary-color: rgba(255, 255, 255, 0.2);
|
|
|
|
--form-element-error-color: var(--app-error-color);
|
|
|
|
--form-element-icon-color: var(--app-icon-hover-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* toggle colors */
|
2024-03-08 06:32:48 +01:00
|
|
|
--toggle-bg-color: var(--app-border-color);
|
|
|
|
--toggle-thumb-color: var(--app-text-color);
|
|
|
|
--toggle-checked-bg-color: var(--app-accent-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* cmdstrcode colors */
|
2024-03-08 06:32:48 +01:00
|
|
|
--cmdstrcode-text-color: var(--app-text-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* markdown colors */
|
2024-02-26 08:21:23 +01:00
|
|
|
--markdown-bg-color: rgb(35, 35, 35);
|
2024-03-05 02:05:05 +01:00
|
|
|
--markdown-outline-color: var(--form-element-primary-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* status(remote) colors */
|
|
|
|
/* todo: all status colors must be unified */
|
2024-03-08 06:32:48 +01:00
|
|
|
--status-connected-color: var(--app-success-color);
|
|
|
|
--status-connecting-color: var(--app-warning-color);
|
|
|
|
--status-error-color: var(--app-error-color);
|
|
|
|
--status-disconnected-color: var(--app-text-secondary-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* status indicator colors */
|
|
|
|
/* todo: all status colors must be unified */
|
2024-03-08 06:32:48 +01:00
|
|
|
--status-indicator-color: var(--app-text-color);
|
|
|
|
--status-indicator-error: var(--status-error-color);
|
|
|
|
--status-indicator-success: var(--status-connected-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* status(version) colors */
|
|
|
|
/* todo: all status colors must be unified */
|
2024-03-08 06:32:48 +01:00
|
|
|
--status-outdated-color: var(--status-connecting-color);
|
|
|
|
--status-updated-color: var(--status-connected-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* term status colors */
|
|
|
|
/* todo: all status colors must be unified */
|
2024-03-08 06:32:48 +01:00
|
|
|
--term-error-color: var(--status-error-color);
|
|
|
|
--term-warning-color: var(--status-connecting-color);
|
2024-02-24 22:13:57 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* hotkey colors */
|
2024-03-08 06:32:48 +01:00
|
|
|
--hotkey-text-color: var(--app-text-secondary-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* sidebar colors */
|
2024-02-27 00:28:59 +01:00
|
|
|
--sidebar-highlight-color: rgba(241, 246, 243, 0.08);
|
2024-03-01 06:40:01 +01:00
|
|
|
--sidebar-font-size: 15px;
|
2024-02-28 01:26:58 +01:00
|
|
|
--sidebar-line-height: 1.5;
|
2024-03-01 06:40:01 +01:00
|
|
|
--sidebar-font-weight: normal;
|
|
|
|
--sidebar-highlight-font-weight: bold;
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* line colors */
|
2024-02-26 08:21:23 +01:00
|
|
|
--line-sidebar-message-color: rgb(196, 160, 0);
|
2024-02-24 22:13:57 +01:00
|
|
|
--line-background: rgba(21, 23, 21, 1);
|
|
|
|
--line-avatar-color: #eceeec;
|
2024-02-26 08:21:23 +01:00
|
|
|
--line-text-color: rgb(211, 215, 207);
|
2024-02-24 22:13:57 +01:00
|
|
|
--line-svg-fill-color: rgb(150, 152, 150);
|
|
|
|
--line-svg-hover-fill-color: #eceeec;
|
|
|
|
--line-selected-border-color: rgb(193, 195, 193);
|
|
|
|
--line-separator-color: rgb(126, 126, 126);
|
2024-03-08 06:32:48 +01:00
|
|
|
--line-error-color: var(--app-error-color);
|
|
|
|
--line-warning-color: var(--app-warning-color);
|
2024-02-24 22:13:57 +01:00
|
|
|
--line-base-soft-blue-color: #729fcf;
|
2024-03-08 06:32:48 +01:00
|
|
|
--line-active-border-color: var(--app-accent-color);
|
2024-02-27 08:55:45 +01:00
|
|
|
--line-selected-bg-color: rgba(255, 255, 255, 0.05);
|
|
|
|
--line-selected-border-left-color: #777777;
|
2024-02-24 22:13:57 +01:00
|
|
|
--line-selected-error-border-color: rgba(204, 0, 0, 0.8);
|
|
|
|
--line-selected-error-bg-color: rgb(19, 4, 3);
|
|
|
|
--line-error-bg-color: rgba(200, 0, 0, 0.1);
|
2024-02-26 08:21:23 +01:00
|
|
|
--line-error-border-left-color: rgba(204, 0, 0, 0.8);
|
2024-02-24 22:13:57 +01:00
|
|
|
--line-simple-text-color: rgba(236, 238, 236, 0.6);
|
|
|
|
--line-meta-user-color: rgba(140, 184, 232);
|
|
|
|
--line-svg-color: rgba(236, 238, 236, 0.6);
|
|
|
|
--line-svg-hover-color: rgba(236, 238, 236, 1);
|
2024-03-08 06:32:48 +01:00
|
|
|
--line-status-success-fill: var(--app-success-color);
|
|
|
|
--line-status-error-fill: var(--app-error-color);
|
|
|
|
--line-status-warning-fill: var(--app-warning-color);
|
2024-02-29 03:23:14 +01:00
|
|
|
--line-actions-inactive-color: rgba(255, 255, 255, 0.5);
|
|
|
|
--line-actions-active-color: rgba(255, 255, 255, 1);
|
2024-03-08 06:32:48 +01:00
|
|
|
--line-actions-bg-color: rgba(255, 255, 255, 0.15);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* view colors */
|
|
|
|
/* todo: bookmarks is a view, colors must be unified with --view* colors */
|
2024-02-26 08:21:23 +01:00
|
|
|
--bookmarks-text-color: rgb(211, 215, 207);
|
|
|
|
--bookmarks-textarea-bg-color: rgb(0, 0, 0);
|
|
|
|
--bookmarks-disabled-text-color: rgb(173, 173, 173);
|
|
|
|
--bookmarks-control-hover-color: rgb(255, 255, 255);
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* view colors */
|
2024-03-08 06:32:48 +01:00
|
|
|
--view-error-color: var(--app-error-color);
|
|
|
|
--view-text-color: var(--app-text-color);
|
2024-02-26 08:21:23 +01:00
|
|
|
|
2024-03-05 02:05:05 +01:00
|
|
|
/* table colors */
|
|
|
|
--table-border-color: rgba(241, 246, 243, 0.15);
|
|
|
|
--table-thead-border-top-color: rgba(250, 250, 250, 0.1);
|
2024-03-08 07:48:52 +01:00
|
|
|
--table-thead-bright-border-color: #ccc;
|
2024-03-05 02:05:05 +01:00
|
|
|
--table-thead-bg-color: rgba(250, 250, 250, 0.02);
|
|
|
|
--table-tr-border-bottom-color: rgba(241, 246, 243, 0.15);
|
|
|
|
--table-tr-hover-bg-color: rgba(255, 255, 255, 0.06);
|
2024-03-05 08:34:35 +01:00
|
|
|
--table-tr-selected-bg-color: #222;
|
|
|
|
--table-tr-selected-hover-bg-color: #333;
|
2024-03-05 02:05:05 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* session colors */
|
2024-02-26 08:21:23 +01:00
|
|
|
--session-bg-color: rgba(13, 13, 13, 0.85);
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* cmdinput colors */
|
2024-02-26 19:06:30 +01:00
|
|
|
--cmdinput-textarea-bg-color: #171717;
|
2024-03-05 02:05:05 +01:00
|
|
|
--cmdinput-text-error-color: var(--term-red);
|
|
|
|
--cmdinput-history-item-error-color: var(--term-bright-red);
|
|
|
|
--cmdinput-history-item-selected-error-color: var(--term-bright-red);
|
2024-02-26 08:21:23 +01:00
|
|
|
--cmdinput-button-bg-color: rgb(88, 193, 66);
|
|
|
|
--cmdinput-comment-button-bg-color: rgb(57, 113, 255);
|
|
|
|
--cmdinput-disabled-icon-color: rgb(76, 81, 75, 1);
|
|
|
|
--cmdinput-history-bg-color: rgb(21, 23, 21, 1);
|
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* screen view color */
|
2024-02-26 08:21:23 +01:00
|
|
|
--screen-view-text-caption-color: rgb(139, 145, 138);
|
2024-02-27 18:09:03 +01:00
|
|
|
|
2024-03-01 09:01:23 +01:00
|
|
|
/* plugins colors */
|
2024-02-27 18:09:03 +01:00
|
|
|
--code-gutter-bg-color: rgba(88, 193, 66, 0.4);
|
2024-03-05 02:05:05 +01:00
|
|
|
|
|
|
|
/* modals colors */
|
|
|
|
--modal-bg-color: var(--app-bg-color);
|
|
|
|
--modal-header-bottom-border-color: rgba(241, 246, 243, 0.15);
|
|
|
|
|
|
|
|
--logo-button-hover-bg-color: #1e1e1e;
|
|
|
|
|
|
|
|
--xterm-viewport-border-color: rgba(241, 246, 243, 0.15);
|
2024-02-24 22:13:57 +01:00
|
|
|
}
|