Merge remote-tracking branch 'upstream/develop' into task/colors-4
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
commit
71eeb836d9
133 changed files with 4235 additions and 1730 deletions
|
@ -12,9 +12,6 @@ $font-family: 'Nunito', 'Twemoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Arial
|
|||
|
||||
$monospace-font-family: 'Inconsolata', 'Twemoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Courier', monospace, 'Noto Color Emoji';
|
||||
|
||||
// Colors from Figma Compound https://www.figma.com/file/X4XTH9iS2KGJ2wFKDqkyed/Compound?node-id=557%3A0
|
||||
$system: #F4F6FA;
|
||||
|
||||
// unified palette
|
||||
// try to use these colors when possible
|
||||
$accent-color: #03b381;
|
||||
|
@ -288,13 +285,24 @@ $progressbar-bg-color: rgba(141, 151, 165, 0.2);
|
|||
$room-warning-bg-color: $yellow-background;
|
||||
|
||||
// Legacy theme backports
|
||||
|
||||
// Legacy theme backports
|
||||
$accent: #0DBD8B;
|
||||
$alert: #FF5B55;
|
||||
$links: #0086e6;
|
||||
$primary-content: $primary-fg-color;
|
||||
$secondary-content: $secondary-fg-color;
|
||||
$tertiary-content: $tertiary-fg-color;
|
||||
$quaternary-content: #6F7882;
|
||||
$quinary-content: $quaternary-content;
|
||||
$system: #F4F6FA;
|
||||
$background: $primary-bg-color;
|
||||
$panels: rgba($system, 0.9);
|
||||
$panel-base: #8D97A5; // This color is not intended for use in the app
|
||||
$panel-selected: rgba($tertiary-content, 0.3);
|
||||
$panel-hover: rgba($tertiary-content, 0.1);
|
||||
$panel-actions: $roomtile-selected-bg-color;
|
||||
$space-nav: rgba($tertiary-content, 0.15);
|
||||
// Legacy theme backports
|
||||
|
||||
$memberstatus-placeholder-color: $muted-fg-color;
|
||||
|
|
|
@ -18,18 +18,18 @@ $font-family: var(--font-family, $font-family);
|
|||
$monospace-font-family: var(--font-family-monospace, $monospace-font-family);
|
||||
|
||||
// Colors from Figma Compound https://www.figma.com/file/X4XTH9iS2KGJ2wFKDqkyed/Compound?node-id=559%3A741
|
||||
$accent: var(--accent);
|
||||
$alert: var(--alert);
|
||||
$links: var(--links);
|
||||
$primary-content: var(--primary-content);
|
||||
$secondary-content: var(--secondary-content);
|
||||
$tertiary-content: var(--tertiary-content);
|
||||
$quaternary-content: var(--quaternary-content);
|
||||
$quinary-content: var(--quinary-content);
|
||||
$system: var(--system);
|
||||
$background: var(--background);
|
||||
$accent: var(--accent, $accent);
|
||||
$alert: var(--alert, $alert);
|
||||
$links: var(--links, $links);
|
||||
$primary-content: var(--primary-content, $primary-content);
|
||||
$secondary-content: var(--secondary-content, $secondary-content);
|
||||
$tertiary-content: var(--tertiary-content, $tertiary-content);
|
||||
$quaternary-content: var(--quaternary-content, $quaternary-content);
|
||||
$quinary-content: var(--quinary-content, $quinary-content);
|
||||
$system: var(--system, $system);
|
||||
$background: var(--background, $background);
|
||||
$panels: rgba($system, 0.9);
|
||||
$panel-base: var(--panel-base); // This color is not intended for use in the app
|
||||
$panel-base: var(--panel-base, $tertiary-content); // This color is not intended for use in the app
|
||||
$panel-selected: rgba($panel-base, 0.3);
|
||||
$panel-hover: rgba($panel-base, 0.1);
|
||||
$panel-actions: rgba($panel-base, 0.2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue