Skip to content
This repository was archived by the owner on Dec 23, 2023. It is now read-only.

Add initial version of dark mode support #40

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
259 changes: 190 additions & 69 deletions admin/src/components/Wysiwyg/wrapper.js
Original file line number Diff line number Diff line change
@@ -1,76 +1,197 @@
import styled from 'styled-components';
import { Box } from "@strapi/design-system/Box";
import {Box} from "@strapi/design-system/Box";

const computeInterfaceModeStyle = () => {
let strapiTheme = window.localStorage.getItem('STRAPI_THEME');
let interfaceModeTextColor = 'initial';
let toolbarButtonHoverColor = 'white';
let selectionColor = '#e1f2ff';
let linkColor = 'initial';
let actionButtonFillColor = 'initial';

const darkModeDefaults = () => {
strapiTheme = 'dark';
interfaceModeTextColor = 'white';
toolbarButtonHoverColor = '#181826';
selectionColor = "#181826";
linkColor = '#7b79ff';
actionButtonFillColor = 'white';
}

if (strapiTheme) {
if (strapiTheme === 'dark') {
darkModeDefaults()
}
if (strapiTheme === 'light') {
interfaceModeTextColor = 'black'
linkColor = 'initial';
}
} else {
// Check what the browser settings are, strapi falls back onto this when there is no local storage
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
darkModeDefaults();
}
}

return `
.tc-wrap {
--color-background: #f9f9fb0f;
}

.cdx-marker {
color: ${interfaceModeTextColor};
background-color: ${strapiTheme === 'dark' ? 'rgb(74 74 106)' : 'yellow'};
}

.ce-block a {
color: ${linkColor};
}

.tc-popover__item-label {
color: black;
}

.ce-block__content {
color: ${interfaceModeTextColor};
}

.ce-toolbar__actions--opened svg {
fill: ${interfaceModeTextColor}
}

.ce-toolbar__settings-btn--active:hover, .ce-toolbar__settings-btn:hover, .ce-toolbar__plus:hover {
background-color: ${toolbarButtonHoverColor};
}

.ce-block--selected .ce-block__content {
background: ${selectionColor};
}

.cdx-block::selection {
background-color: ${selectionColor};
}

.cdx-block *::selection {
background-color: ${selectionColor};
}

.tc-wrap svg {
vertical-align: top;
fill: black;
}

.tc-popover__item--confirm svg {
fill: white;
}

.ce-toolbox--opened {
background: white;
padding: 2px;
border-radius: 6px;
}

.ce-settings--opened svg {
fill: currentColor;
}

.tc-add-column svg:first-of-type, .tc-add-row svg:first-of-type {
fill: ${actionButtonFillColor};
}

.image-tool .image-tool__caption {
color: ${interfaceModeTextColor} !important;
}
`;
}


const Wrapper = styled(Box)`
@media (min-width: 651px) {
.codex-editor--narrow .codex-editor__redactor {
margin-right: 0;
}
}
.codex-editor {
padding: 16px;
font-size: 1rem;
}
*:focus-visible {
outline: none;
}
h1 {
font-size: 2.5rem;
font-weight: bold;
}
h2 {
font-size: 1.5em;
font-weight: bold;
}
h3 {
font-size: 1.17em;
font-weight: bold;
}
h4 {
font-size: 1em;
font-weight: bold;
}
h5 {
font-size: .83em;
font-weight: bold;
}
h6 {
font-size: .67em;
font-weight: bold;
}
label {
display: block;
margin-bottom: 1rem;
}
&.bordered {
.editorWrapper {
border-color: red;
}
}
> div + p {
width: 100%;
padding-top: 12px;
font-size: 1.2rem;
line-height: normal;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: -9px;
}
div,
pre,
code {
::-webkit-scrollbar {
height: 5px;
width: 5px;
cursor: default;
}
}
.cdx-input.image-tool__caption {
font-size: .9rem;
color: #444;
line-height: 1.5;
${computeInterfaceModeStyle};

@media (min-width: 651px) {
.codex-editor--narrow .codex-editor__redactor {
margin-right: 0;
}
}

.codex-editor {
padding: 16px;
font-size: 1rem;
}

*:focus-visible {
outline: none;
}

h1 {
font-size: 2.5rem;
font-weight: bold;
}

h2 {
font-size: 1.5em;
font-weight: bold;
}

h3 {
font-size: 1.17em;
font-weight: bold;
}

h4 {
font-size: 1em;
font-weight: bold;
}

h5 {
font-size: .83em;
font-weight: bold;
}

h6 {
font-size: .67em;
font-weight: bold;
}

label {
display: block;
margin-bottom: 1rem;
}

&.bordered {
.editorWrapper {
border-color: red;
}
}

> div + p {
width: 100%;
padding-top: 12px;
font-size: 1.2rem;
line-height: normal;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-bottom: -9px;
}

div,
pre,
code {
::-webkit-scrollbar {
height: 5px;
width: 5px;
cursor: default;
}
}

.cdx-input.image-tool__caption {
font-size: .9rem;
color: #444;
line-height: 1.5;
}


`;

export default Wrapper;