Files
ThreadNet-Web/res/themes/dark/css/_dark.scss
T

313 lines
8.3 KiB
SCSS
Raw Normal View History

2021-08-04 09:48:41 +02:00
// Colors from Figma Compound https://www.figma.com/file/X4XTH9iS2KGJ2wFKDqkyed/Compound?node-id=559%3A741
2021-11-15 10:42:06 +01:00
// ********************
2021-08-04 09:48:41 +02:00
$primary-content: #ffffff;
$secondary-content: #A9B2BC;
$tertiary-content: #8E99A4;
$quaternary-content: #6F7882;
$quinary-content: #394049;
2021-08-12 16:16:13 +02:00
$system: #21262C;
$system-transparent: rgba($system, 0.0); // XXX: workaround for Safari 15.3 linear-gradient bug
2021-08-04 09:48:41 +02:00
$background: #15191E;
$overlay-background: rgba($background, 0.85);
2021-08-04 09:48:41 +02:00
$panel-base: #8D97A5; // This color is not intended for use in the app
$panels: rgba($system, 0.9);
2021-08-04 09:48:41 +02:00
$panel-selected: rgba($panel-base, 0.3);
$panel-hover: rgba($panel-base, 0.1);
$panel-actions: rgba($panel-base, 0.2);
$space-nav: rgba($panel-base, 0.1);
2021-11-15 10:42:06 +01:00
// ********************
2021-08-04 09:48:41 +02:00
2021-11-15 10:42:06 +01:00
// Reused Figma non-compound colors
// ********************
$inverted-bg-color: $background;
$header-panel-bg-color: #20252B;
2021-11-15 10:42:06 +01:00
// ********************
// Theme specific colors
// ********************
$icon-button-color: $tertiary-content;
// ********************
// Colors that aren't in Figma and are theme specific - we need to get rid of these
2021-11-15 10:42:06 +01:00
// ********************
$header-panel-text-secondary-color: #c8c8cd;
2019-02-13 13:10:55 +00:00
$room-highlight-color: #343a46;
$text-secondary-color: #B9BEC6;
// ********************
// Colors that aren't in Figma - we need to get rid of these
// ********************
2021-11-15 10:42:06 +01:00
$dark-panel-bg-color: $header-panel-bg-color;
$muted-fg-color: $header-panel-text-primary-color;
$light-fg-color: $header-panel-text-secondary-color;
$focus-bg-color: $room-highlight-color;
$info-plinth-bg-color: $header-panel-bg-color;
$event-selected-color: $system;
$topleftmenu-color: $primary-content;
$roomtopic-color: $text-secondary-color;
$spacePanel-bg-color: rgba(38, 39, 43, 0.82);
$panel-gradient: rgba(34, 38, 46, 0), rgba(34, 38, 46, 1);
$h3-color: $primary-content;
$event-highlight-bg-color: #25271F;
$header-panel-text-primary-color: $text-secondary-color;
2021-11-15 10:42:06 +01:00
// ********************
// Tooltip
2021-11-15 10:42:06 +01:00
// ********************
$tooltip-timeline-bg-color: $spacePanel-bg-color;
$tooltip-timeline-fg-color: $primary-content;
2021-11-15 10:42:06 +01:00
// ********************
// Widget
2021-11-15 10:42:06 +01:00
// ********************
$widget-menu-bar-bg-color: $header-panel-bg-color;
$widget-body-bg-color: $panel-actions;
2021-11-15 10:42:06 +01:00
// ********************
2021-11-15 10:42:06 +01:00
// Menu
// ********************
2021-11-10 10:46:33 +01:00
$menu-border-color: #000000;
2019-02-12 15:40:06 +00:00
$menu-bg-color: $header-panel-bg-color;
2021-08-12 11:14:11 +02:00
$menu-box-shadow-color: $background;
2019-02-12 15:40:06 +00:00
$menu-selected-color: $room-highlight-color;
2021-11-15 10:42:06 +01:00
// ********************
// Settings
// ********************
$settings-profile-button-bg-color: #e7e7e7;
$settings-subsection-fg-color: $text-secondary-color;
// ********************
// Room
// ********************
$room-icon-unread-color: #fff;
// ********************
// RoomHeader
// ********************
$roomheader-addroom-bg-color: rgba(92, 100, 112, 0.3);
$roomheader-addroom-fg-color: $primary-content;
// ********************
2021-12-03 10:23:38 +01:00
// Rich-text-editor
// ********************
2022-05-05 11:13:09 +02:00
$pill-bg-color: $room-highlight-color;
$pill-hover-bg-color: #545a66;
// ********************
// Inputs
// ********************
$input-border-color: rgba(231, 231, 231, 0.2);
$input-darker-bg-color: #181b21;
$input-darker-fg-color: #61708b;
$input-lighter-bg-color: #f2f5f8;
// ********************
// Dialog
2021-11-15 10:42:06 +01:00
// ********************
2021-08-12 11:17:04 +02:00
$dialog-title-fg-color: $primary-content;
2021-11-29 13:52:09 +01:00
$dialog-backdrop-color: $menu-border-color;
$dialog-close-fg-color: #9fa9ba;
$dialog-close-external-color: $primary-content;
2020-06-12 13:52:54 -06:00
// ********************
2021-11-15 10:42:06 +01:00
// RoomList
// ********************
2021-11-29 13:52:09 +01:00
$roomlist-bg-color: rgba($system, 0.90);
2020-11-02 17:22:45 +00:00
$roomsublist-skeleton-ui-bg: linear-gradient(180deg, #3e444c 0%, #3e444c00 100%);
2021-11-29 13:52:09 +01:00
$roomtile-default-badge-bg-color: $input-darker-fg-color;
2020-06-12 13:52:54 -06:00
// ********************
2019-02-12 15:40:06 +00:00
// Tabbed views
2021-11-15 10:42:06 +01:00
// ********************
2021-08-12 11:18:40 +02:00
$tab-label-fg-color: $primary-content;
$tab-label-active-fg-color: $primary-content;
2021-11-15 10:42:06 +01:00
// ********************
2019-02-12 15:40:06 +00:00
// Buttons
2021-11-15 10:42:06 +01:00
// ********************
2021-08-04 10:06:11 +02:00
$button-primary-fg-color: $primary-content;
2019-02-12 15:40:06 +00:00
$button-secondary-bg-color: transparent;
2021-08-04 10:06:11 +02:00
$button-danger-fg-color: $primary-content;
$button-danger-disabled-fg-color: $primary-content;
2021-11-15 10:42:06 +01:00
// ********************
2020-04-23 12:28:00 +01:00
// Toggle switch
2021-11-15 10:42:06 +01:00
// ********************
2020-04-23 12:28:00 +01:00
$togglesw-off-color: $room-highlight-color;
2021-11-15 10:42:06 +01:00
// ********************
2020-04-23 12:28:00 +01:00
2021-11-15 10:42:06 +01:00
// Authpage
// ********************
$authpage-primary-color: $primary-content;
2021-11-15 10:42:06 +01:00
// ********************
2021-09-09 02:11:47 -04:00
2021-11-15 10:42:06 +01:00
// Message action bar
// ********************
2019-04-30 17:41:11 +01:00
$message-action-bar-bg-color: $header-panel-bg-color;
$message-action-bar-fg-color: $header-panel-text-primary-color;
$message-action-bar-border-color: #616b7f;
$message-action-bar-hover-border-color: $header-panel-text-primary-color;
2021-11-15 10:42:06 +01:00
// ********************
2021-11-15 10:42:06 +01:00
// Reaction row
// ********************
$reaction-row-button-hover-border-color: $header-panel-text-primary-color;
2019-05-02 11:48:32 +01:00
$reaction-row-button-selected-bg-color: #1f6954;
2021-11-15 10:42:06 +01:00
// ********************
2019-05-17 12:09:47 +01:00
2021-11-15 10:42:06 +01:00
// Voice messages
// ********************
2021-08-12 11:20:30 +02:00
$voice-record-stop-border-color: $quaternary-content;
$voice-record-icon-color: $quaternary-content;
2021-11-15 10:42:06 +01:00
// ********************
2021-07-01 14:23:00 +01:00
// Bubble tiles
2021-11-15 10:42:06 +01:00
// ********************
$eventbubble-self-bg: #133A34;
$eventbubble-others-bg: #21262C;
2021-08-04 08:46:09 +02:00
$eventbubble-bg-hover: #1C2026;
2021-07-13 10:15:12 +02:00
$eventbubble-reply-color: #C1C6CD;
2021-11-15 10:42:06 +01:00
// ********************
2021-07-01 14:23:00 +01:00
// Lightbox
// ********************
$lightbox-background-bg-color: $menu-border-color;
$lightbox-background-bg-opacity: 0.85;
// ********************
2021-11-15 18:24:11 +01:00
// VoIP
// ********************
$call-view-button-on-foreground: $primary-content;
$call-view-button-on-background: $system;
$call-view-button-off-foreground: $system;
$call-view-button-off-background: $primary-content;
2022-05-04 17:16:38 +02:00
$call-view-content-background: $quinary-content;
2021-11-15 18:24:11 +01:00
$video-feed-secondary-background: $system;
2022-04-20 11:03:33 -04:00
$video-lobby-system: $system;
$video-lobby-background: $background;
$video-lobby-primary-content: $primary-content;
2021-11-15 18:24:11 +01:00
// ********************
2022-03-02 14:00:40 +01:00
// Location sharing
// ********************
$location-live-color: #5c56f5;
$location-live-secondary-color: #deddfd;
2022-03-02 14:00:40 +01:00
// ********************
// Location sharing
// ********************
.maplibregl-ctrl-attrib-button {
color: $background;
}
// ********************
2021-11-15 10:42:06 +01:00
// One-off colors
// ********************
$progressbar-bg-color: $system;
2021-11-29 13:52:09 +01:00
$kbd-border-color: $menu-border-color;
2021-11-15 10:42:06 +01:00
$visual-bell-bg-color: #800;
$event-timestamp-color: $text-secondary-color;
$slider-background-color: $quinary-content;
2021-11-15 10:42:06 +01:00
$appearance-tab-border-color: $room-highlight-color;
$composer-shadow-color: rgba(0, 0, 0, 0.28);
$breadcrumb-placeholder-bg-color: #272c35;
$theme-button-bg-color: #e3e8f0;
$resend-button-divider-color: rgba($header-panel-text-primary-color, 0.74);
$codeblock-background-color: #2a3039;
$scrollbar-thumb-color: rgba(255, 255, 255, 0.2);
$selected-color: $room-highlight-color;
2021-11-15 10:42:06 +01:00
// ********************
2021-11-15 10:42:06 +01:00
// blur amounts for left left panel (only for element theme)
// ********************
:root {
--lp-background-blur: 45px;
}
// ********************
// Mixins
// ********************
@define-mixin mx_DialogButton {
/* align images in buttons (eg spinners) */
vertical-align: middle;
border: 0px;
border-radius: 8px;
font-family: $font-family;
2020-03-31 15:26:23 +01:00
font-size: $font-14px;
2019-02-12 15:40:06 +00:00
color: $button-fg-color;
2021-11-11 14:37:29 +01:00
background-color: $accent;
width: auto;
padding: 7px;
padding-left: 1.5em;
padding-right: 1.5em;
cursor: pointer;
display: inline-block;
outline: none;
}
2019-02-12 15:40:06 +00:00
@define-mixin mx_DialogButton_danger {
2021-11-11 14:37:29 +01:00
background-color: $accent;
2019-02-12 15:40:06 +00:00
}
@define-mixin mx_DialogButton_secondary {
// flip colours for the secondary ones
font-weight: 600;
2021-11-11 14:37:29 +01:00
border: 1px solid $accent !important;
color: $accent;
2019-02-12 15:40:06 +00:00
background-color: $button-secondary-bg-color;
}
@define-mixin mx_Dialog_link {
2021-11-11 14:37:29 +01:00
color: $accent;
text-decoration: none;
}
2021-11-15 10:42:06 +01:00
// ********************
2022-05-09 21:55:31 -04:00
body {
color-scheme: dark;
}
2019-02-13 10:06:18 +00:00
// Nasty hacks to apply a filter to arbitrary monochrome artwork to make it
// better match the theme. Typically applied to dark grey 'off' buttons or
// light grey 'on' buttons.
2021-11-15 10:42:06 +01:00
// ********************
2019-02-13 10:06:18 +00:00
.mx_filterFlipColor {
filter: invert(1);
}
2021-11-15 10:42:06 +01:00
// ********************
2019-02-13 10:06:18 +00:00
2021-11-15 10:42:06 +01:00
// markdown overrides
// ********************
2019-02-13 10:06:18 +00:00
.mx_EventTile_content .markdown-body {
table {
tr {
2021-11-29 13:52:09 +01:00
background-color: $menu-border-color;
2019-02-13 10:06:18 +00:00
}
tr:nth-child(2n) {
background-color: #080808;
}
}
}
2021-11-15 10:42:06 +01:00
// ********************
2021-11-15 10:42:06 +01:00
// diff highlight colors
// ********************
2021-07-07 09:22:12 +02:00
.hljs-tag {
2021-07-07 10:28:29 +02:00
color: inherit; // Without this they'd be weirdly blue which doesn't match the theme
}
.hljs-addition {
background: #1a4b59;
}
.hljs-deletion {
background: #53232a;
}
2021-11-15 10:42:06 +01:00
// ********************