-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Configurable dark mode (color scheme) (#460)
* Add: Dark color scheme * Fix: Remove !important statements preventing forms to implement dark mode * Fix: Final color values * Fix: Announce dark mode to the browser for scrollbar coloring * Add: configurable color scheme * Fix: Propagate dark mode to iframes * Fix: color scheme switch as css variables * Fix: Cascade settings into iframes of iframes (e.g., cms plugins inside ckeditor)
- Loading branch information
Showing
8 changed files
with
163 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
@import "reset-django-dark-mode"; | ||
@import "cms"; | ||
@import "custom"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
djangocms_admin_style/sass/settings/_reset-django-dark-mode.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
:root[data-color-scheme="light"] { | ||
--primary: #79aec8; | ||
--secondary: #417690; | ||
--accent: #f5dd5d; | ||
--primary-fg: #fff; | ||
|
||
--body-fg: #333; | ||
--body-bg: #fff; | ||
--body-quiet-color: #666; | ||
--body-loud-color: #000; | ||
|
||
--header-color: #ffc; | ||
--header-branding-color: var(--accent); | ||
--header-bg: var(--secondary); | ||
--header-link-color: var(--primary-fg); | ||
|
||
--breadcrumbs-fg: #c4dce8; | ||
--breadcrumbs-link-fg: var(--body-bg); | ||
--breadcrumbs-bg: var(--primary); | ||
|
||
--link-fg: #447e9b; | ||
--link-hover-color: #036; | ||
--link-selected-fg: #5b80b2; | ||
|
||
--hairline-color: #e8e8e8; | ||
--border-color: #ccc; | ||
|
||
--error-fg: #ba2121; | ||
|
||
--message-success-bg: #dfd; | ||
--message-warning-bg: #ffc; | ||
--message-error-bg: #ffefef; | ||
|
||
--darkened-bg: #f8f8f8; /* A bit darker than --body-bg */ | ||
--selected-bg: #e4e4e4; /* E.g. selected table cells */ | ||
--selected-row: #ffc; | ||
|
||
--button-fg: #fff; | ||
--button-bg: var(--primary); | ||
--button-hover-bg: #609ab6; | ||
--default-button-bg: var(--secondary); | ||
--default-button-hover-bg: #205067; | ||
--close-button-bg: #888; /* Previously #bbb, contrast 1.92 */ | ||
--close-button-hover-bg: #747474; | ||
--delete-button-bg: #ba2121; | ||
--delete-button-hover-bg: #a41515; | ||
|
||
--object-tools-fg: var(--button-fg); | ||
--object-tools-bg: var(--close-button-bg); | ||
--object-tools-hover-bg: var(--close-button-hover-bg); | ||
} | ||
|
||
:root[data-color-scheme="dark"] { | ||
--primary: #264b5d; | ||
--primary-fg: #f7f7f7; | ||
|
||
--body-fg: #eeeeee; | ||
--body-bg: #121212; | ||
--body-quiet-color: #e0e0e0; | ||
--body-loud-color: #ffffff; | ||
|
||
--breadcrumbs-link-fg: #e0e0e0; | ||
--breadcrumbs-bg: var(--primary); | ||
|
||
--link-fg: #81d4fa; | ||
--link-hover-color: #4ac1f7; | ||
--link-selected-fg: #6f94c6; | ||
|
||
--hairline-color: #272727; | ||
--border-color: #353535; | ||
|
||
--error-fg: #e35f5f; | ||
--message-success-bg: #006b1b; | ||
--message-warning-bg: #583305; | ||
--message-error-bg: #570808; | ||
|
||
--darkened-bg: #212121; | ||
--selected-bg: #1b1b1b; | ||
--selected-row: #00363a; | ||
|
||
--close-button-bg: #333333; | ||
--close-button-hover-bg: #666666; | ||
|
||
|
||
--object-tools-fg: var(--button-fg); | ||
--object-tools-bg: var(--close-button-bg); | ||
--object-tools-hover-bg: var(--close-button-hover-bg); | ||
} |
2 changes: 1 addition & 1 deletion
2
djangocms_admin_style/static/djangocms_admin_style/css/djangocms-admin.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 1 addition & 4 deletions
5
djangocms_admin_style/static/djangocms_admin_style/js/dist/bundle.adminstyle.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
30 changes: 30 additions & 0 deletions
30
djangocms_admin_style/static/djangocms_admin_style/js/modules/dark-mode.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* Get color scheme from parent document (if in iframe) else set to white | ||
* | ||
* @function darkModeSettings | ||
* @returns {void} | ||
*/ | ||
function darkModeSettings() { | ||
if (!document.documentElement.dataset.colorScheme) { | ||
var colorScheme = 'light'; // Default mode | ||
var cms_window = window; | ||
|
||
while (cms_window.parent !== cms_window) { | ||
cms_window = cms_window.parent; | ||
} | ||
if (cms_window.CMS && cms_window.CMS.config) { | ||
if (cms_window.CMS.settings.color_scheme) { | ||
// Use color_scheme from settings.py | ||
colorScheme = cms_window.CMS.settings.color_scheme; | ||
} else if (cms_window.CMS.config.color_scheme) { | ||
// If overwritten by config use config. This is the toggle button | ||
colorScheme = cms_window.CMS.config.color_scheme; | ||
} | ||
} | ||
if (colorScheme !== 'auto') { | ||
document.documentElement.dataset.colorScheme = colorScheme; | ||
} | ||
} | ||
} | ||
|
||
module.exports = darkModeSettings; |