|
|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
--muted-text-color: #666;
|
|
|
|
|
|
|
|
|
|
--input-text-color: black;
|
|
|
|
|
--input-background-color: white;
|
|
|
|
|
--input-background-color: transparent;
|
|
|
|
|
|
|
|
|
|
--hover-item-text-color: black;
|
|
|
|
|
--hover-item-background-color: #ddd;
|
|
|
|
|
@ -62,6 +62,70 @@
|
|
|
|
|
--link-color: blue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.theme-green {
|
|
|
|
|
--main-font-family: MontserratLight;
|
|
|
|
|
--main-font-size: normal;
|
|
|
|
|
|
|
|
|
|
--tree-font-family: MontserratLight;
|
|
|
|
|
--tree-font-size: normal;
|
|
|
|
|
|
|
|
|
|
--detail-font-family: MontserratLight;
|
|
|
|
|
--detail-font-size: normal;
|
|
|
|
|
|
|
|
|
|
--font-family-monospace: JetBrainsLight;
|
|
|
|
|
--detail-text-font-family: MontserratLight;
|
|
|
|
|
|
|
|
|
|
--main-background-color: white;
|
|
|
|
|
--main-text-color: black;
|
|
|
|
|
--main-border-color: #3F9D38;
|
|
|
|
|
|
|
|
|
|
--accented-background-color: #51C048;
|
|
|
|
|
--more-accented-background-color: #3F9D38;
|
|
|
|
|
|
|
|
|
|
--button-background-color: transparent;
|
|
|
|
|
--button-disabled-background-color: #ddd;
|
|
|
|
|
--button-border-color: #3F9D38;
|
|
|
|
|
--button-text-color: #3F9D38;
|
|
|
|
|
--button-border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
--primary-button-background-color: #6c757d;
|
|
|
|
|
--primary-button-text-color: white;
|
|
|
|
|
--primary-button-border-color: #6c757d;
|
|
|
|
|
|
|
|
|
|
--muted-text-color: #666;
|
|
|
|
|
|
|
|
|
|
--input-text-color: black;
|
|
|
|
|
--input-background-color: transparent;
|
|
|
|
|
|
|
|
|
|
--hover-item-text-color: black;
|
|
|
|
|
--hover-item-background-color: #ddd;
|
|
|
|
|
|
|
|
|
|
--active-item-text-color: black;
|
|
|
|
|
--active-item-background-color: #ddd;
|
|
|
|
|
|
|
|
|
|
--menu-text-color: black;
|
|
|
|
|
--menu-background-color: white;
|
|
|
|
|
|
|
|
|
|
--modal-background-color: white;
|
|
|
|
|
--modal-backdrop-color: black;
|
|
|
|
|
|
|
|
|
|
--left-pane-background-color: #98DB92;
|
|
|
|
|
--left-pane-text-color: #333;
|
|
|
|
|
|
|
|
|
|
--launcher-pane-background-color: #98DB92;
|
|
|
|
|
--launcher-pane-text-color: #333;
|
|
|
|
|
|
|
|
|
|
--active-tab-background-color: #51C048;
|
|
|
|
|
--active-tab-text-color: black;
|
|
|
|
|
|
|
|
|
|
--inactive-tab-background-color: #98DB92;
|
|
|
|
|
--inactive-tab-text-color: #666;
|
|
|
|
|
|
|
|
|
|
--scrollbar-border-color: #3F9D38;
|
|
|
|
|
--tooltip-background-color: #f8f8f8;
|
|
|
|
|
--link-color: blue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.theme-dark {
|
|
|
|
|
--main-font-family: MontserratLight;
|
|
|
|
|
--main-font-size: normal;
|
|
|
|
|
@ -254,6 +318,15 @@ input, select, textarea {
|
|
|
|
|
background: var(--input-background-color) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#left-pane input, select, textarea {
|
|
|
|
|
color: var(--left-pane-text-color) !important;
|
|
|
|
|
background: var(--left-pane-background-color) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input::placeholder {
|
|
|
|
|
color: var(--muted-text-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table td, table th {
|
|
|
|
|
color: var(--main-text-color);
|
|
|
|
|
}
|
|
|
|
|
|