mermaid-docsify icon indicating copy to clipboard operation
mermaid-docsify copied to clipboard

Customize styles

Open DanielYWoo opened this issue 2 years ago • 3 comments

Is there a recommended way to change the default look & feel?

DanielYWoo avatar Mar 17 '22 16:03 DanielYWoo

Is there a recommended way to change the default look & feel?

I have the same question.

sinisteralex avatar May 16 '22 13:05 sinisteralex

Customizing mermaid can be done in the mermaid.initialize() call:

<script>
      mermaid.initialize({
            startOnLoad: true,
            theme: 'dark',  // change to the desired theme
            // other options here ...
      });
</script>

engineervix avatar Feb 06 '23 06:02 engineervix

Thanks @engineervix. @Leward can we have this in the README?

DanielYWoo avatar Feb 06 '23 07:02 DanielYWoo