You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
403 lines
16 KiB
TypeScript
403 lines
16 KiB
TypeScript
5 years ago
|
import React from 'react';
|
||
|
|
||
4 years ago
|
import { createGlobalStyle } from 'styled-components';
|
||
5 years ago
|
|
||
|
const white = '#ffffff';
|
||
|
const black = '#000000';
|
||
4 years ago
|
const warning = '#e7b100';
|
||
5 years ago
|
const destructive = '#ff453a';
|
||
|
const accentLightTheme = '#00e97b';
|
||
|
const accentDarkTheme = '#00f782';
|
||
4 years ago
|
const borderLightThemeColor = '#f1f1f1';
|
||
|
const borderDarkThemeColor = '#ffffff0F';
|
||
4 years ago
|
|
||
3 years ago
|
// THEME INDEPEDENT COLORS
|
||
|
const sessionBlack = '#282829';
|
||
|
|
||
4 years ago
|
// DARK COLORS
|
||
|
const darkColorAccent = accentDarkTheme;
|
||
|
const darkColorAccentButton = accentDarkTheme;
|
||
|
const darkColorText = white;
|
||
4 years ago
|
const darkColorTextOpposite = black;
|
||
|
|
||
4 years ago
|
const darkColorTextSubtle = `${white}99`;
|
||
|
const darkColorTextAccent = accentDarkTheme;
|
||
|
const darkColorSessionShadow = `0 0 4px 0 ${white}33`;
|
||
|
const darkColorComposeViewBg = '#232323';
|
||
|
const darkColorSentMessageBg = accentDarkTheme;
|
||
|
const darkColorClickableHovered = '#414347';
|
||
|
const darkColorSessionBorder = `1px solid ${borderDarkThemeColor}`;
|
||
|
const darkColorSessionBorderColor = borderDarkThemeColor;
|
||
|
const darkColorRecoveryPhraseBannerBg = '#1f1f1f';
|
||
|
const darkColorPillDivider = '#353535';
|
||
3 years ago
|
const darkColorLastSeenIndicator = accentDarkTheme;
|
||
4 years ago
|
const darkColorQuoteBottomBarBg = '#404040';
|
||
4 years ago
|
const darkColorCellBackground = '#1b1b1b';
|
||
|
const darkColorReceivedMessageBg = '#2d2d2d';
|
||
|
const darkColorReceivedMessageText = white;
|
||
|
|
||
|
const darkColorPillDividerText = '#a0a0a0';
|
||
|
const darkInputBackground = darkColorCellBackground;
|
||
|
const darkFilterSessionText = 'none';
|
||
|
const darkUnreadBorder = `4px solid ${accentDarkTheme}`;
|
||
|
|
||
|
const darkScrollbarThumb = '#474646';
|
||
|
const darkScrollbarTrack = '#1b1b1b';
|
||
|
const darkFakeChatBubbleBg = '#212121';
|
||
|
|
||
|
const darkInboxBackground = '#171717';
|
||
|
const darkLeftPaneOverlayBg = darkInboxBackground;
|
||
|
const darkConversationItemSelected = '#404040';
|
||
|
const darkConversationItemHasUnread = '#2c2c2c';
|
||
|
const darkConversationList = '#1b1b1b';
|
||
|
|
||
4 years ago
|
const darkTextHighlight = `${white}88`;
|
||
4 years ago
|
const darkForegroundPrimary = white;
|
||
|
const darkBackgroundPrimary = '#474646';
|
||
|
const darkButtonGreen = accentDarkTheme;
|
||
|
const darkModalBackground = '#101011';
|
||
5 years ago
|
|
||
3 years ago
|
const grey67 = '#434343';
|
||
3 years ago
|
const darkMessageRequestBannerBackground = darkConversationItemHasUnread;
|
||
3 years ago
|
const darkMessageRequestBannerIconBackground = grey67;
|
||
|
const darkMessageRequestBannerUnreadBackground = grey67;
|
||
|
const darkMessageRequestBannerIcon = '#adadad';
|
||
|
|
||
4 years ago
|
export const switchHtmlToDarkTheme = () => {
|
||
|
document.documentElement.style.setProperty('--color-accent', darkColorAccent);
|
||
|
document.documentElement.style.setProperty('--color-accent-button', darkColorAccentButton);
|
||
|
document.documentElement.style.setProperty('--color-text', darkColorText);
|
||
3 years ago
|
document.documentElement.style.setProperty('--color-text-menu-highlighted', lightColorText);
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-text-subtle', darkColorTextSubtle);
|
||
|
document.documentElement.style.setProperty('--color-text-accent', darkColorTextAccent);
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-text-opposite', darkColorTextOpposite);
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-session-shadow', darkColorSessionShadow);
|
||
|
document.documentElement.style.setProperty(
|
||
4 years ago
|
'--color-compose-view-button-background',
|
||
4 years ago
|
darkColorComposeViewBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-sent-message-background',
|
||
|
darkColorSentMessageBg
|
||
|
);
|
||
3 years ago
|
document.documentElement.style.setProperty('--color-sent-message-text', sessionBlack);
|
||
4 years ago
|
document.documentElement.style.setProperty(
|
||
|
'--color-clickable-hovered',
|
||
|
darkColorClickableHovered
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-session-border', darkColorSessionBorder);
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-session-border', darkColorSessionBorderColor);
|
||
4 years ago
|
document.documentElement.style.setProperty(
|
||
|
'--color-recovery-phrase-banner-background',
|
||
|
darkColorRecoveryPhraseBannerBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-pill-divider', darkColorPillDivider);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-last-seen-indicator',
|
||
|
darkColorLastSeenIndicator
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-quote-bottom-bar-background',
|
||
|
darkColorQuoteBottomBarBg
|
||
|
);
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-cell-background', darkColorCellBackground);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-received-message-text',
|
||
|
darkColorReceivedMessageText
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-received-message-background',
|
||
|
darkColorReceivedMessageBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-pill-divider-text', darkColorPillDividerText);
|
||
|
document.documentElement.style.setProperty('--color-input-background', darkInputBackground);
|
||
|
|
||
|
document.documentElement.style.setProperty('--filter-session-text', darkFilterSessionText);
|
||
|
document.documentElement.style.setProperty('--border-unread', darkUnreadBorder);
|
||
|
|
||
|
document.documentElement.style.setProperty('--color-scroll-bar-thumb', darkScrollbarThumb);
|
||
|
document.documentElement.style.setProperty('--color-scroll-bar-track', darkScrollbarTrack);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-fake-chat-bubble-background',
|
||
|
darkFakeChatBubbleBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-inbox-background', darkInboxBackground);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-left-pane-overlay-background',
|
||
|
darkLeftPaneOverlayBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-conversation-item-selected',
|
||
|
darkConversationItemSelected
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-conversation-item-has-unread',
|
||
|
darkConversationItemHasUnread
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-conversation-list', darkConversationList);
|
||
|
|
||
|
document.documentElement.style.setProperty('--color-text-highlight', darkTextHighlight);
|
||
|
document.documentElement.style.setProperty('--color-foreground-primary', darkForegroundPrimary);
|
||
|
document.documentElement.style.setProperty('--color-background-primary', darkBackgroundPrimary);
|
||
|
document.documentElement.style.setProperty('--color-button-green', darkButtonGreen);
|
||
|
document.documentElement.style.setProperty('--color-modal-background', darkModalBackground);
|
||
4 years ago
|
document.documentElement.style.setProperty('--border-session', darkColorSessionBorder);
|
||
3 years ago
|
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-request-banner-background',
|
||
|
darkMessageRequestBannerBackground
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-request-banner-icon-background',
|
||
|
darkMessageRequestBannerIconBackground
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-request-banner-unread-background',
|
||
|
darkMessageRequestBannerUnreadBackground
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-request-banner-icon',
|
||
|
darkMessageRequestBannerIcon
|
||
|
);
|
||
5 years ago
|
};
|
||
|
|
||
4 years ago
|
// LIGHT COLORS
|
||
|
const lightColorAccent = accentLightTheme;
|
||
|
const lightColorAccentButton = black;
|
||
|
const lightColorText = black;
|
||
4 years ago
|
const lightColorTextOpposite = white;
|
||
4 years ago
|
const lightColorTextSubtle = `${black}99`;
|
||
3 years ago
|
const lightColorTextAccent = accentLightTheme;
|
||
4 years ago
|
const lightColorSessionShadow = `0 0 4px 0 ${black}5E`;
|
||
|
const lightColorComposeViewBg = '#efefef';
|
||
3 years ago
|
const lightColorSentMessageBg = accentLightTheme;
|
||
4 years ago
|
const lightColorClickableHovered = '#dfdfdf';
|
||
|
const lightColorSessionBorderColor = borderLightThemeColor;
|
||
4 years ago
|
const lightColorSessionBorder = `1px solid ${lightColorSessionBorderColor}`;
|
||
4 years ago
|
const lightColorRecoveryPhraseBannerBg = white;
|
||
|
const lightColorPillDivider = `${black}1A`;
|
||
3 years ago
|
const lightColorLastSeenIndicator = black;
|
||
4 years ago
|
const lightColorQuoteBottomBarBg = '#f0f0f0';
|
||
4 years ago
|
const lightColorCellBackground = '#f9f9f9';
|
||
|
const lightColorReceivedMessageBg = '#f5f5f5';
|
||
|
const lightColorReceivedMessageText = black;
|
||
|
|
||
|
const lightColorPillDividerText = '#555555';
|
||
|
|
||
|
const lightInputBackground = '#efefef';
|
||
|
const lightFilterSessionText = 'brightness(0) saturate(100%)';
|
||
|
const lightUnreadBorder = `4px solid ${accentLightTheme}`;
|
||
|
|
||
|
const lightScrollbarThumb = '#474646';
|
||
|
const lightScrollbarTrack = '#fcfcfc';
|
||
|
const lightFakeChatBubbleBg = '#f5f5f5';
|
||
|
|
||
|
const lightInboxBackground = white;
|
||
|
const lightLeftPaneOverlayBg = lightInboxBackground;
|
||
|
const lightConversationItemSelected = '#f0f0f0';
|
||
|
const lightConversationItemHasUnread = '#fcfcfc';
|
||
|
const lightConversationList = '#f9f9f9';
|
||
|
|
||
4 years ago
|
const lightTextHighlight = `${black}88`;
|
||
4 years ago
|
const lightForegroundPrimary = white;
|
||
|
const lightBackgroundPrimary = '#272726';
|
||
|
const lightButtonGreen = '#272726';
|
||
|
const lightModalBackground = '#fcfcfc';
|
||
5 years ago
|
|
||
3 years ago
|
const lightMessageRequestBannerBackground = lightColorQuoteBottomBarBg;
|
||
3 years ago
|
const lightMessageRequestBannerIconBackground = '#585858';
|
||
3 years ago
|
const lightMessageRequestBannerUnreadBackground = lightColorClickableHovered;
|
||
3 years ago
|
const lightMessageRequestBannerIcon = white;
|
||
|
|
||
4 years ago
|
export const switchHtmlToLightTheme = () => {
|
||
|
document.documentElement.style.setProperty('--color-accent', lightColorAccent);
|
||
|
document.documentElement.style.setProperty('--color-accent-button', lightColorAccentButton);
|
||
|
document.documentElement.style.setProperty('--color-text', lightColorText);
|
||
3 years ago
|
document.documentElement.style.setProperty('--color-text-menu-highlighted', lightColorText);
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-text-subtle', lightColorTextSubtle);
|
||
|
document.documentElement.style.setProperty('--color-text-accent', lightColorTextAccent);
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-text-opposite', lightColorTextOpposite);
|
||
|
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-session-shadow', lightColorSessionShadow);
|
||
|
document.documentElement.style.setProperty(
|
||
4 years ago
|
'--color-compose-view-button-background',
|
||
4 years ago
|
lightColorComposeViewBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-sent-message-background',
|
||
|
lightColorSentMessageBg
|
||
|
);
|
||
3 years ago
|
// TODO: This might be wrong. Didn't merge correctly.
|
||
|
document.documentElement.style.setProperty('--color-sent-message-text', black);
|
||
4 years ago
|
document.documentElement.style.setProperty(
|
||
|
'--color-clickable-hovered',
|
||
|
lightColorClickableHovered
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-session-border', lightColorSessionBorder);
|
||
|
document.documentElement.style.setProperty(
|
||
4 years ago
|
'--color-session-border',
|
||
4 years ago
|
lightColorSessionBorderColor
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-recovery-phrase-banner-background',
|
||
|
lightColorRecoveryPhraseBannerBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-pill-divider', lightColorPillDivider);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-last-seen-indicator',
|
||
|
lightColorLastSeenIndicator
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-quote-bottom-bar-background',
|
||
|
lightColorQuoteBottomBarBg
|
||
|
);
|
||
4 years ago
|
document.documentElement.style.setProperty('--color-cell-background', lightColorCellBackground);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-received-message-text',
|
||
|
lightColorReceivedMessageText
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-received-message-background',
|
||
|
lightColorReceivedMessageBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-pill-divider-text',
|
||
|
lightColorPillDividerText
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-input-background', lightInputBackground);
|
||
|
document.documentElement.style.setProperty('--filter-session-text', lightFilterSessionText);
|
||
|
document.documentElement.style.setProperty('--border-unread', lightUnreadBorder);
|
||
|
|
||
|
document.documentElement.style.setProperty('--color-scroll-bar-thumb', lightScrollbarThumb);
|
||
|
document.documentElement.style.setProperty('--color-scroll-bar-track', lightScrollbarTrack);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-fake-chat-bubble-background',
|
||
|
lightFakeChatBubbleBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-inbox-background', lightInboxBackground);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-left-pane-overlay-background',
|
||
|
lightLeftPaneOverlayBg
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-conversation-item-selected',
|
||
|
lightConversationItemSelected
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-conversation-item-has-unread',
|
||
|
lightConversationItemHasUnread
|
||
|
);
|
||
|
document.documentElement.style.setProperty('--color-conversation-list', lightConversationList);
|
||
|
|
||
|
document.documentElement.style.setProperty('--color-text-highlight', lightTextHighlight);
|
||
|
document.documentElement.style.setProperty('--color-foreground-primary', lightForegroundPrimary);
|
||
|
document.documentElement.style.setProperty('--color-background-primary', lightBackgroundPrimary);
|
||
|
document.documentElement.style.setProperty('--color-button-green', lightButtonGreen);
|
||
|
document.documentElement.style.setProperty('--color-modal-background', lightModalBackground);
|
||
4 years ago
|
document.documentElement.style.setProperty('--border-session', lightColorSessionBorder);
|
||
3 years ago
|
document.documentElement.style.setProperty(
|
||
|
'--color-request-banner-background',
|
||
|
lightMessageRequestBannerBackground
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-request-banner-icon-background',
|
||
|
lightMessageRequestBannerIconBackground
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-request-banner-unread-background',
|
||
|
lightMessageRequestBannerUnreadBackground
|
||
|
);
|
||
|
document.documentElement.style.setProperty(
|
||
|
'--color-request-banner-icon',
|
||
|
lightMessageRequestBannerIcon
|
||
|
);
|
||
5 years ago
|
};
|
||
|
|
||
4 years ago
|
// default to light theme
|
||
4 years ago
|
export const SessionGlobalStyles = createGlobalStyle`
|
||
|
html {
|
||
|
/* FONTS */
|
||
|
--font-default: 'Roboto';
|
||
|
--font-font-accent: 'Loor';
|
||
|
--font-font-mono: 'SpaceMono';
|
||
3 years ago
|
--font-size-xs: 11px;
|
||
|
--font-size-sm: 13px;
|
||
|
--font-size-md: 15px;
|
||
|
--font-size-lg: 17px;
|
||
3 years ago
|
--font-size-h1: 30px;
|
||
|
--font-size-h2: 24px;
|
||
|
--font-size-h3: 20px;
|
||
|
--font-size-h4: 16px;
|
||
4 years ago
|
|
||
|
/* MARGINS */
|
||
4 years ago
|
--margins-xs: 5px;
|
||
|
--margins-sm: 10px;
|
||
|
--margins-md: 15px;
|
||
|
--margins-lg: 20px;
|
||
4 years ago
|
|
||
3 years ago
|
/* SIZES */
|
||
|
--main-view-header-height: 63px;
|
||
|
|
||
4 years ago
|
/* ANIMATIONS */
|
||
3 years ago
|
--default-duration: 0.25s;
|
||
4 years ago
|
/* FILTERS */
|
||
4 years ago
|
--filter-session-text: ${lightFilterSessionText};
|
||
4 years ago
|
/* BORDERS */
|
||
4 years ago
|
--border-unread: ${lightUnreadBorder};
|
||
|
--border-session: ${lightColorSessionBorder};
|
||
4 years ago
|
|
||
3 years ago
|
/* CONSTANTS */
|
||
|
--compositionContainerHeight: 60px;
|
||
3 years ago
|
--search-input-height: 34px;
|
||
3 years ago
|
|
||
4 years ago
|
/* COLORS NOT CHANGING BETWEEN THEMES */
|
||
|
--color-warning: ${warning};
|
||
|
--color-destructive: ${destructive};
|
||
|
/* COLORS */
|
||
4 years ago
|
--color-accent: ${lightColorAccent};
|
||
|
--color-accent-button: ${lightColorAccentButton};
|
||
4 years ago
|
|
||
4 years ago
|
--color-text: ${lightColorText};
|
||
|
--color-text-subtle: ${lightColorTextSubtle};
|
||
|
--color-text-accent: ${lightColorTextAccent};
|
||
|
--color-text-opposite: ${lightColorTextOpposite};
|
||
4 years ago
|
|
||
4 years ago
|
--color-session-shadow: ${lightColorSessionShadow};
|
||
|
--color-compose-view-button-background: ${lightColorComposeViewBg};
|
||
|
--color-sent-message-background: ${lightColorSentMessageBg};
|
||
3 years ago
|
// TODO: this might be wrong text colour. Something happened during merge.
|
||
|
--color-sent-message-text: ${black};
|
||
4 years ago
|
--color-clickable-hovered: ${lightColorClickableHovered};
|
||
|
--color-session-border: ${lightColorSessionBorderColor};
|
||
|
--color-recovery-phrase-banner-background: ${lightColorRecoveryPhraseBannerBg};
|
||
|
--color-pill-divider: ${lightColorPillDivider};
|
||
|
--color-last-seen-indicator: ${lightColorLastSeenIndicator};
|
||
|
--color-quote-bottom-bar-background: ${lightColorQuoteBottomBarBg};
|
||
|
--color-cell-background: ${lightColorCellBackground};
|
||
|
--color-pill-divider-text: ${lightColorPillDividerText};
|
||
|
--color-input-background: ${lightInputBackground};
|
||
|
--color-scroll-bar-thumb: ${lightScrollbarThumb};
|
||
|
--color-scroll-bar-track: ${lightScrollbarTrack};
|
||
|
--color-fake-chat-bubble-background: ${lightFakeChatBubbleBg};
|
||
|
--color-inbox-background: ${lightInboxBackground};
|
||
|
--color-left-pane-overlay-background: ${lightLeftPaneOverlayBg};
|
||
|
--color-conversation-item-selected: ${lightConversationItemSelected};
|
||
|
--color-conversation-item-has-unread: ${lightConversationItemHasUnread};
|
||
|
--color-conversation-list: ${lightConversationList};
|
||
|
--color-text-highlight: ${lightTextHighlight};
|
||
|
--color-foreground-primary: ${lightForegroundPrimary};
|
||
|
--color-background-primary: ${lightBackgroundPrimary};
|
||
|
--color-button-green: ${lightButtonGreen};
|
||
|
--color-modal-background: ${lightModalBackground};
|
||
4 years ago
|
|
||
|
|
||
4 years ago
|
};
|
||
4 years ago
|
`;
|
||
4 years ago
|
|
||
4 years ago
|
export const SessionTheme = ({ children }: { children: any }) => (
|
||
|
<>
|
||
|
<SessionGlobalStyles />
|
||
|
{children}
|
||
|
</>
|
||
4 years ago
|
);
|