mirror of
https://github.com/status-im/consul.git
synced 2025-01-29 15:05:04 +00:00
06ff4228b4
* 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>
104 lines
1.5 KiB
SCSS
104 lines
1.5 KiB
SCSS
a {
|
|
text-decoration: none;
|
|
}
|
|
td,
|
|
th,
|
|
span,
|
|
strong {
|
|
color: inherit;
|
|
}
|
|
/* %typo-body */
|
|
body {
|
|
color: var(--token-color-foreground-strong);
|
|
}
|
|
/* TODO: Consider changing this to 'p a, dd a, td a' etc etc */
|
|
a {
|
|
color: var(--token-color-foreground-action);
|
|
}
|
|
html {
|
|
background-color: var(--token-color-surface-primary);
|
|
}
|
|
hr {
|
|
background-color: var(--token-color-surface-interactive-active);
|
|
}
|
|
html {
|
|
font-size: var(--typo-size-000);
|
|
}
|
|
/* %typo-body */
|
|
body {
|
|
line-height: 1.5;
|
|
}
|
|
body,
|
|
input,
|
|
select,
|
|
textarea {
|
|
font-family: var(--typo-family-sans);
|
|
}
|
|
code,
|
|
pre {
|
|
font-family: var(--typo-family-mono);
|
|
}
|
|
strong {
|
|
font-style: inherit;
|
|
font-weight: var(--typo-weight-bold);
|
|
}
|
|
html {
|
|
text-rendering: optimizeLegibility;
|
|
text-size-adjust: 100%;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
code,
|
|
pre {
|
|
-moz-osx-font-smoothing: auto;
|
|
-webkit-font-smoothing: auto;
|
|
}
|
|
|
|
pre {
|
|
-webkit-overflow-scrolling: touch;
|
|
overflow-x: auto;
|
|
white-space: pre;
|
|
word-wrap: normal;
|
|
}
|
|
html {
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
}
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: inherit;
|
|
}
|
|
fieldset {
|
|
border: none;
|
|
width: 100%;
|
|
}
|
|
a,
|
|
input[type='checkbox'],
|
|
input[type='radio'] {
|
|
cursor: pointer;
|
|
}
|
|
hr {
|
|
border: none;
|
|
display: block;
|
|
}
|
|
input[type='checkbox'],
|
|
input[type='radio'] {
|
|
vertical-align: baseline;
|
|
}
|
|
td,
|
|
th {
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
html {
|
|
min-width: 300px;
|
|
}
|
|
hr {
|
|
height: 1px;
|
|
margin: 1.5rem 0;
|
|
}
|