Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dark and light mode support #68

Open
jtarchie opened this issue Jan 27, 2024 · 0 comments
Open

dark and light mode support #68

jtarchie opened this issue Jan 27, 2024 · 0 comments

Comments

@jtarchie
Copy link

jtarchie commented Jan 27, 2024

This is a placeholder issue for me and others.

My site currently supports light and dark modes. MermaidJS does not support that natively, so I am seeking an alternative.

I was thinking of having two renders per backtick mermaidjs.

For example,

   ```mermaid
       ....
   \```

Would render to:

<pre class="mermaid mermaid-light">
   <!--- light theme render -->
</pre>
<pre class="mermaid mermaid-dark">
   <!--- dark theme render -->
</pre>
<style>
 @media (prefers-color-scheme: light) {
    .mermaid.mermaid-dark { display: none; }
    .mermaid.mermaid-light { display: block; }
  }
 @media (prefers-color-scheme: dark) {
    .mermaid.mermaid-dark { display: block; }
    .mermaid.mermaid-light { display: none; }
  }
</style>

I'd like to explore this with the plugin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant