forked from LLNL/merlin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Charle's suggestions for the landing page
- Loading branch information
Showing
4 changed files
with
87 additions
and
52 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
/* | ||
* This script is for swapping the landing page image between | ||
* one with black text (for light mode) and one with white | ||
* text (for dark mode). | ||
*/ | ||
|
||
function swapLandingPageImage() { | ||
// Get the current theme (should be "slate" or "default") | ||
const colorSchemeValue = document.body.getAttribute("data-md-color-scheme"); | ||
|
||
// Get the image element | ||
const imageElement = document.getElementById("landing-page-image"); | ||
|
||
// Paths for light/dark mode images | ||
const lightModeImgPath = "assets/images/merlin_banner.png"; | ||
const darkModeImgPath = "assets/images/merlin_banner_white.png"; | ||
|
||
// Set the image source based on the color scheme | ||
imageElement.src = colorSchemeValue == "slate" ? darkModeImgPath : lightModeImgPath; | ||
} | ||
|
||
// Set up an observer to watch for theme changes | ||
const observer = new MutationObserver(swapLandingPageImage); | ||
const targetNode = document.body; | ||
const config = {attributes: true, childList: true}; | ||
observer.observe(targetNode, config); |
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