💄 Creates configurable CSS variables for new config editor

This commit is contained in:
Alicia Sykes
2021-10-18 22:14:02 +01:00
parent 03906130c7
commit 8a4f4373c1
5 changed files with 37 additions and 19 deletions

View File

@@ -57,6 +57,9 @@
--config-settings-background: var(--background-darker);
--code-editor-color: var(--black);
--code-editor-background: var(--white);
--interactive-editor-color: var(--primary);
--interactive-editor-background: var(--background);
--interactive-editor-background-darker: var(--background-darker);
// Search bar (on homepage)
--search-container-background: var(--background-darker);
--search-field-background: var(--background);

View File

@@ -217,6 +217,9 @@ html[data-theme='material-original'] {
--item-group-heading-text-color-hover: #01579b;
--config-settings-background: #01579b;
--config-settings-color: #fff;
--interactive-editor-background: #01579b;
--interactive-editor-color: #fff;
--interactive-editor-background-darker: #29B6F6;
--heading-text-color: #fff;
--status-check-tooltip-background: #f2f2f2;
--status-check-tooltip-color: #01579b;
@@ -263,6 +266,9 @@ html[data-theme='material-dark-original'] {
--welcome-popup-text-color: var(--primary);
--config-settings-background: #131a1f;
--config-settings-color: #41e2ed;
--interactive-editor-color: #41e2ed;
--interactive-editor-background: #131a1f;
--interactive-editor-background-darker: #092b3a;
--scroll-bar-color: #08B0BB;
--scroll-bar-background: #131a1f;
--status-check-tooltip-background: #131a1f;
@@ -514,6 +520,9 @@ html[data-theme='material'] {
--config-code-color: #363636;
--config-settings-background: #f5f5f5;
--config-settings-color: #473f3f;
--interactive-editor-color: #473f3f;
--interactive-editor-background: #f5f5f5;
--interactive-editor-background-darker: #fff;
--heading-text-color: #fff;
--curve-factor: 3px;
--curve-factor-navbar: 8px;
@@ -622,13 +631,16 @@ html[data-theme='material-dark'] {
--description-tooltip-color: #e0e0e0;
--curve-factor: 2px;
--curve-factor-navbar: 0;
--side-bar-background: #131a1f;
--welcome-popup-background: #131a1f;
--welcome-popup-text-color: var(--primary);
--config-settings-background: #131a1f;
--config-settings-color: #41e2ed;
--interactive-editor-background: #131a1f;
--interactive-editor-background-darker: #131a1f;
--interactive-editor-color: #41e2ed;
--scroll-bar-color: #08B0BB;
--scroll-bar-background: #131a1f;
// --login-form-color: #131a1f;
@@ -929,6 +941,9 @@ html[data-theme='glow'], html[data-theme=glow-colorful] {
--nav-link-border-color-hover: var(--blue);
--config-settings-background: var(--blue);
--config-settings-color: var(--pink);
--interactive-editor-background: var(--blue);
--interactive-editor-background-darker: var(--blue);
--interactive-editor-color: var(--pink);
--search-label-color: var(--blue);
--item-group-background: var(--blue);
--item-text-color: var(--pale);