2023-03-14 13:18:55 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) HashiCorp, Inc.
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
|
|
*/
|
|
|
|
|
2018-10-19 16:36:38 +00:00
|
|
|
$syntax-consul: #69499a;
|
|
|
|
$syntax-dark-gray: #535f73;
|
2021-10-07 18:21:11 +00:00
|
|
|
:root {
|
|
|
|
--syntax-light-grey: #dde3e7;
|
|
|
|
--syntax-light-gray: #a4a4a4;
|
|
|
|
--syntax-light-grey-blue: #6c7b81;
|
|
|
|
--syntax-dark-grey: #788290;
|
|
|
|
--syntax-faded-gray: #eaeaea;
|
|
|
|
// Product colors
|
|
|
|
--syntax-atlas: #127eff;
|
|
|
|
--syntax-vagrant: #2f88f7;
|
|
|
|
--syntax-consul: #{$syntax-consul};
|
|
|
|
--syntax-terraform: #822ff7;
|
|
|
|
--syntax-serf: #dd4e58;
|
|
|
|
--syntax-packer: #1ddba3;
|
|
|
|
|
|
|
|
// Our colors
|
|
|
|
--syntax-gray: lighten(#000, 89%);
|
|
|
|
--syntax-red: #ff3d3d;
|
|
|
|
--syntax-green: #39b54a;
|
|
|
|
--syntax-dark-gray: #{$syntax-dark-gray};
|
|
|
|
|
|
|
|
--syntax-gutter-grey: #2a2f36;
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
--syntax-yellow: var(--token-color-vault-brand);
|
2021-10-07 18:21:11 +00:00
|
|
|
}
|
2018-10-19 16:36:38 +00:00
|
|
|
.CodeMirror {
|
2021-11-12 15:28:06 +00:00
|
|
|
max-width: 1260px;
|
2018-10-19 16:36:38 +00:00
|
|
|
min-height: 300px;
|
|
|
|
height: auto;
|
|
|
|
/* adds some space at the bottom of the editor for when a horizonal-scroll has appeared */
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
.CodeMirror-scroll {
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
}
|
|
|
|
.CodeMirror-lint-tooltip {
|
2023-03-15 02:49:14 +00:00
|
|
|
@extend %code-100-regular;
|
2018-10-19 16:36:38 +00:00
|
|
|
background-color: #f9f9fa;
|
2021-10-07 18:21:11 +00:00
|
|
|
border: 1px solid var(--syntax-light-gray);
|
2018-10-19 16:36:38 +00:00
|
|
|
border-radius: 0;
|
2021-10-07 18:21:11 +00:00
|
|
|
color: lighten(#000, 13%);
|
2018-10-19 16:36:38 +00:00
|
|
|
padding: 7px 8px 9px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cm-s-hashi {
|
|
|
|
&.CodeMirror {
|
|
|
|
width: 100%;
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
background-color: var(--token-color-hashicorp-brand) !important;
|
2018-10-19 16:36:38 +00:00
|
|
|
color: #cfd2d1 !important;
|
|
|
|
border: none;
|
2023-03-15 02:49:14 +00:00
|
|
|
font-family: var(--token-typography-font-stack-code);
|
2018-10-19 16:36:38 +00:00
|
|
|
-webkit-font-smoothing: auto;
|
|
|
|
line-height: 1.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-gutters {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-dark-grey);
|
|
|
|
background-color: var(--syntax-gutter-grey);
|
2018-10-19 16:36:38 +00:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-cursor {
|
|
|
|
border-left: solid thin #f8f8f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-linenumber {
|
|
|
|
color: #6d8a88;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.CodeMirror-focused div.CodeMirror-selected {
|
|
|
|
background: rgb(33, 66, 131);
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-line::selection,
|
|
|
|
.CodeMirror-line > span::selection,
|
|
|
|
.CodeMirror-line > span > span::selection {
|
|
|
|
background: rgb(33, 66, 131);
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-line::-moz-selection,
|
|
|
|
.CodeMirror-line > span::-moz-selection,
|
|
|
|
.CodeMirror-line > span > span::-moz-selection {
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
background: var(--token-color-surface-interactive);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-comment {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-light-grey);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-string,
|
|
|
|
span.cm-string-2 {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-packer);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-number {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-serf);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-variable {
|
|
|
|
color: lighten($syntax-consul, 20%);
|
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-variable-2 {
|
|
|
|
color: lighten($syntax-consul, 20%);
|
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-def {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-packer);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-operator {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-gray);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
span.cm-keyword {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-yellow);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-atom {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-serf);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-meta {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-packer);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-tag {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-packer);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
2022-01-04 16:24:09 +00:00
|
|
|
span.cm-error {
|
|
|
|
color: var(--syntax-red);
|
|
|
|
}
|
|
|
|
|
2018-10-19 16:36:38 +00:00
|
|
|
span.cm-attribute {
|
|
|
|
color: #9fca56;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-qualifier {
|
|
|
|
color: #9fca56;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-property {
|
|
|
|
color: lighten($syntax-consul, 20%);
|
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-variable-3 {
|
|
|
|
color: #9fca56;
|
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-builtin {
|
|
|
|
color: #9fca56;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-activeline-background {
|
|
|
|
background: #101213;
|
|
|
|
}
|
|
|
|
|
|
|
|
.CodeMirror-matchingbracket {
|
|
|
|
text-decoration: underline;
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
color: var(--token-color-surface-primary) !important;
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.readonly-codemirror {
|
|
|
|
.CodeMirror-cursors {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cm-s-hashi {
|
|
|
|
span {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-light-grey);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-string,
|
|
|
|
span.cm-string-2 {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-faded-gray);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-number {
|
|
|
|
color: lighten($syntax-dark-gray, 30%);
|
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-property {
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
color: var(--token-color-surface-primary);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
span.cm-variable-2 {
|
2021-10-07 18:21:11 +00:00
|
|
|
color: var(--syntax-light-grey-blue);
|
2018-10-19 16:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-11-12 15:28:06 +00:00
|
|
|
|
|
|
|
%code-editor {
|
|
|
|
.toolbar-container {
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
background: var(--token-color-surface-strong);
|
2021-11-12 15:28:06 +00:00
|
|
|
background: linear-gradient(
|
|
|
|
180deg,
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
var(--token-color-surface-strong) 50%,
|
|
|
|
var(--token-color-surface-interactive-active) 100%
|
2021-11-12 15:28:06 +00:00
|
|
|
);
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
border: 1px solid var(--token-color-surface-interactive-active);
|
|
|
|
border-bottom-color: var(--token-color-foreground-faint);
|
|
|
|
border-top-color: var(--token-color-foreground-disabled);
|
2021-11-12 15:28:06 +00:00
|
|
|
|
|
|
|
.toolbar {
|
|
|
|
.title {
|
2023-03-15 02:49:14 +00:00
|
|
|
@extend %body-200-semibold;
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
color: var(--token-color-foreground-strong);
|
2021-11-12 15:28:06 +00:00
|
|
|
}
|
|
|
|
.toolbar-separator {
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
border-right: 1px solid var(--token-color-palette-neutral-300);
|
2021-11-12 15:28:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.ember-power-select-trigger {
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
background-color: var(--token-color-surface-primary);
|
|
|
|
color: var(--token-color-hashicorp-brand);
|
2021-11-12 15:28:06 +00:00
|
|
|
border-radius: var(--decor-radius-100);
|
|
|
|
border: var(--decor-border-100);
|
UI: Update Consul UI colors to use HDS colors (#16111)
* update red color variables to hds
* change background red to be one step lighter
* map oranges
* map greens
* map blues
* map greys
* delete themes, colours: lemon, magenta, strawberry, and vault color aliases
* add unmapped rainbow colours
* replace white and transparent vars, remove unused semantic vars and frame placeholders
* small tweaks to improve contrast, change node health status x/check colours for non-voters to match design doc, replace semantic colour action w hds colour
* add unmapped grays, remove dark theme, manually set nav bar to use dark colours
* map consul pink colour
* map yellows
* add unmapped oranges, delete light theme
* remove readme, base variables, clean up dangling colours
* Start working on the nav disclosure menus
* Update main-nav-horizontal dropdowns
* Format template
* Update box-shadow tokens
* Replace --tone- usage with tokens
* Update nav disabled state and panel border colour
* Replace rgb usage on tile
* Fix permissions modal overlay
* More fixes
* Replace orange-500 with amber-200
* Update badge colors
* Update vertical sidebar colors
* Remove top border on consul peer list ul
---------
Co-authored-by: wenincode <tyler.wendlandt@hashicorp.com>
2023-02-27 16:30:12 +00:00
|
|
|
border-color: var(--token-color-foreground-faint);
|
2021-11-12 15:28:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|