Skip to content
On this page

Theme Configuration

With Version 8.7.0 Mermaid comes out with a system for dynamic and integrated configuration of themes. The intent is to increase the customizability and ease of styling for mermaid diagrams.

The theme can be altered by changing the root level variable theme variable in the configuration. To change it for the whole site you must use the initialize call. To do it for just for a single diagram you can use the %%init%% directive

Themes follow and build upon the Levels of Configuration, and employ directives to modify and create custom configurations, as they were introduced in Version 8.6.0.

Deployable Themes

The following are a list of Deployable themes, sample %%init%% directives and initialize calls.

  1. base- Designed to be modified, as the name implies it is supposed to be used as the base for making custom themes.

  2. forest- A theme full of light greens that is easy on the eyes.

  3. dark- A theme that would go well with other dark-colored elements.

  4. default- The default theme for all diagrams.

  5. neutral- The theme to be used for black and white printing.

Site-wide Themes

Site-wide themes are declared via initialize by site owners.

Example of Initialize call setting theme to base:

javascript
mermaidAPI.initialize({
  securityLevel: 'loose',
  theme: 'base',
});

Notes: Only site owners can use the mermaidAPI.initialize call, to set values. Site-Users will have to use %%init%% to modify or create the theme for their diagrams.

Themes at the Local or Current Level

When Generating a diagram using on a webpage that supports mermaid. It is also possible to override site-wide theme settings locally, for a specific diagram, using directives, as long as it is not prohibited by the secure array.

mermaid
%%{init: {'theme':'base'}}%%
  graph TD
    a --> b

Here is an example of how %%init%% can set the theme to 'base', this assumes that themeVariables are set to default:

Code:
mermaid
%%{init: {'theme':'base'}}%%
        graph TD
          A[Christmas] -->|Get money| B(Go shopping)
          B --> C{Let me think}
          B --> G[/Another/]
          C ==>|One| D[Laptop]
          C -->|Two| E[iPhone]
          C -->|Three| F[fa:fa-car Car]
          subgraph section
            C
            D
            E
            F
            G
          end
Render:
null

List of Themes

Customizing Themes with themeVariables

The easiest way to make a custom theme is to start with the base theme, and just modify theme variables through themeVariables, via %%init%%.

ParameterDescriptionTypeRequiredObjects contained
themeVariablesArray containing objects, modifiable with the %%init%% directiveArrayRequiredprimaryColor, lineColor, textColor

Here is an example of overriding primaryColor through themeVariables and giving everything a different look, using %%init%%.

Code:
mermaid
%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#ff0000'}}}%%
        graph TD
          A[Christmas] -->|Get money| B(Go shopping)
          B --> C{Let me think}
          B --> G[/Another/]
          C ==>|One| D[Laptop]
          C -->|Two| E[iPhone]
          C -->|Three| F[fa:fa-car Car]
          subgraph section
            C
            D
            E
            F
            G
          end
Render:
null

Notes: Leaving it empty will set all variable values to default.

Color and Color Calculation:

Color definitions have certain interactions in mermaid, this is in order to ensure visibility for diagrams. Mermaid will adjust some variables automatically, when colors are changed in order to compensate and maintain readability.

The Default Value Column to the right of the Variable column will denote the Variable paired/associated with the Variable on the left and the nature of this pairing or association. If it for instance says primaryColor it means that it gets primaryColor as default value. If it says "based on primaryColor" it means that it is calculated/ derived from primaryColor. This calculation can be primary color inversion, a change of hue, darkening or lightening by 10%, etc.

You can create your own themes, by changing any of the given variables below. If you are using a dark background, set dark mode to true to adjust the colors. It is possible to override the calculations using the variable names below, with %%init%% if you wish to style it differently.

Theme Variables Reference Table

NOTE

Variables that are unique to some diagrams can be affected by changes in Theme Variables }

VariableDefault/Base/Factor valueCalcDescription
darkModefalseBoolean Value that dictates how to calculate colors. "true" will activate darkmode.
background#f4f4f4Used to calculate color for items that should either be background colored or contrasting to the background.
fontFamily"trebuchet ms", verdana, arial
fontSize16pxFont Size, in pixels
primaryColor#fff4ddColor to be used as background in nodes, other colors will be derived from this
primaryBorderColorbased on primaryColor*Color to be used as border in nodes using primaryColor
primaryTextColorbased on darkMode #ddd/#333*Color to be used as text color in nodes using primaryColor
secondaryColorbased on primaryColor*
secondaryBorderColorbased on secondaryColor*Color to be used as border in nodes using secondaryColor
secondaryTextColorbased on secondaryColor*Color to be used as text color in nodes using secondaryColor
tertiaryColorbased on primaryColor*
tertiaryBorderColorbased on tertiaryColor*Color to be used as border in nodes using tertiaryColor
tertiaryTextColorbased on tertiaryColor*Color to be used as text color in nodes using tertiaryColor
noteBkgColor#fff5adColor used as background in notes
noteTextColor#333Text color in note rectangles.
noteBorderColorbased on noteBkgColor*Border color in note rectangles.
lineColorbased on background*
textColorbased on primaryTextColor*Text in diagram over the background for instance text on labels and on signals in sequence diagram or the title in gantt diagram
mainBkgbased on primaryColor*Background in flowchart objects like rects/circles, class diagram classes, sequence diagram etc
errorBkgColortertiaryColor*Color for syntax error message
errorTextColortertiaryTextColor*Color for syntax error message

What follows are Variables, specific to different diagrams and charts.

Some Theme Variables serve as, or affect the Default Values for Specific Diagram Variables, unless changed using %%init%% .

Flowchart

VariableDefault/ Associated ValueCalcDescription
nodeBorderprimaryBorderColor*Node Border Color
clusterBkgtertiaryColor*Background in subgraphs
clusterBordertertiaryBorderColor*Cluster Border Color
defaultLinkColorlineColor*Link Color
titleColortertiaryTextColor*Title Color
edgeLabelBackgroundbased on secondaryColor*
nodeTextColorprimaryTextColor*Color for text inside Nodes.

sequence diagram

nameDefault valueCalcDescription
actorBorderprimaryBorderColor*Actor Border Color
actorBkgmainBkg*Actor Background Color
actorTextColorprimaryTextColor*Actor Text Color
actorLineColorgrey*Actor Line Color
signalColortextColor*Signal Color
signalTextColortextColor*Signal Text Color
labelBoxBkgColoractorBkg*Label Box Background Color
labelBoxBorderColoractorBorder*Label Box Border Color
labelTextColoractorTextColor*Label Text Color
loopTextColoractorTextColor*Loop ext Color
activationBorderColorbased on secondaryColor*Activation Border Color
activationBkgColorsecondaryColor*Activation Background Color
sequenceNumberColorbased on lineColor*Sequence Number Color

state colors

nameDefault valueCalcDescription
labelColorprimaryTextColor*
altBackgroundtertiaryColor*Used for background in deep composite states

class colors

nameDefault valueCalcDescription
classTexttextColor*Color of Text in class diagrams

User journey colors

nameDefault valueCalcDescription
fillType0primaryColor*Fill for 1st section in journey diagram
fillType1secondaryColor*Fill for 2nd section in journey diagram
fillType2based on primaryColor*Fill for 3rd section in journey diagram
fillType3based on secondaryColor*Fill for 4th section in journey diagram
fillType4based on primaryColor*Fill for 5th section in journey diagram
fillType5based on secondaryColor*Fill for 6th section in journey diagram
fillType6based on primaryColor*Fill for 7th section in journey diagram
fillType7based on secondaryColor*Fill for 8th section in journey diagram

**Notes: Values are meant to create an alternating look.

Here is an example of overriding primaryColor and giving everything a different look, using %%init%%.

Code:
mermaid
%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#ff0000'}}}%%
        graph TD
          A[Christmas] -->|Get money| B(Go shopping)
          B --> C{Let me think}
          B --> G[/Another/]
          C ==>|One| D[Laptop]
          C -->|Two| E[iPhone]
          C -->|Three| F[fa:fa-car Car]
          subgraph section
            C
            D
            E
            F
            G
          end
Render:
null

**This got a bit too dark and bit too colorful. With some easy steps this can be fixed:

  • Make the primary color a little lighter
  • set the tertiary color to a reddish shade as well
  • make the edge label background differ from the subgraph by setting the edgeLabelBackground
Code:
mermaid
%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#ffcccc', 'edgeLabelBackground':'#ffffee', 'tertiaryColor': '#fff0f0'}}}%%
        graph TD
          A[Christmas] -->|Get money| B(Go shopping)
          B --> C{Let me think}
          B --> G[/Another/]
          C ==>|One| D[Laptop]
          C -->|Two| E[iPhone]
          C -->|Three| F[fa:fa-car Car]
          subgraph section
            C
            D
            E
            F
            G
          end
Render:
null

The Theming Engine does not admit color codes and will only accept proper color values. Color Names is not supported so for instance, the color value 'red' will not work, but '#ff0000' will work.

Common theming activities

How to change the color of the arrows

Examples:

When adjusting a theme it might be helpful to look at how your preferred theme goes with the diagrams, to evaluate whether everything is visible and looks good. In the following examples, the directive init is used, with the theme being declared as base. For more information on using directives, read the documentation for Version 8.6.0

Flowchart

Code:
mermaid
%%{init: {'securityLevel': 'loose', 'theme':'base'}}%%
        graph TD
          A[Christmas] -->|Get money| B(Go shopping)
          B --> C{Let me think}
          B --> G[/Another/]
          C ==>|One| D[Laptop]
          C -->|Two| E[iPhone]
          C -->|Three| F[fa:fa-car Car]
          subgraph section
            C
            D
            E
            F
            G
          end
Render:
null

Flowchart (beta)

Code:
mermaid
%%{init: {'securityLevel': 'loose', 'theme':'base'}}%%
        flowchart TD
          A[Christmas] -->|Get money| B(Go shopping)
          B --> C{Let me think}
          B --> G[Another]
          C ==>|One| D[Laptop]
          C x--x|Two| E[iPhone]
          C o--o|Three| F[fa:fa-car Car]
          subgraph section
            C
            D
            E
            F
            G
          end
Render:
null

Sequence diagram

Code:
mermaid
%%{init: {'securityLevel': 'loose', 'theme':'base'}}%%
        sequenceDiagram
          autonumber
          par Action 1
            Alice->>John: Hello John, how are you?
          and Action 2
            Alice->>Bob: Hello Bob, how are you?
          end
          Alice->>+John: Hello John, how are you?
          Alice->>+John: John, can you hear me?
          John-->>-Alice: Hi Alice, I can hear you!
          Note right of John: John is perceptive
          John-->>-Alice: I feel great!
              loop Every minute
                John-->Alice: Great!
            end
Render:
null

Class diagram

Code:
mermaid
%%{init: {'securityLevel': 'loose', 'theme':'base'}}%%

classDiagram
	Animal "1" <|-- Duck
	Animal <|-- Fish
	Animal <--o Zebra
	Animal : +int age
	Animal : +String gender
	Animal: +isMammal()
	Animal: +mate()
	class Duck{
		+String beakColor
		+swim()
		+quack()
	}
	class Fish{
		-int sizeInFeet
		-canEat()
	}
	class Zebra{
		+bool is_wild
		+run()
	}
Render:
null

Gantt

Code:
mermaid
gantt
       dateFormat                YYYY-MM-DD
       title                     Adding GANTT diagram functionality to mermaid
       excludes                  :excludes the named dates/days from being included in a charted task..
       section A section
       Completed task            :done,    des1, 2014-01-06,2014-01-08
       Active task               :active,  des2, 2014-01-09, 3d
       Future task               :         des3, after des2, 5d
       Future task2              :         des4, after des3, 5d

       section Critical tasks
       Completed task in the critical line :crit, done, 2014-01-06,24h
       Implement parser and jison          :crit, done, after des1, 2d
       Create tests for parser             :crit, active, 3d
       Future task in critical line        :crit, 5d
       Create tests for renderer           :2d
       Add to mermaid                      :1d

       section Documentation
       Describe gantt syntax               :active, a1, after des1, 3d
       Add gantt diagram to demo page      :after a1  , 20h
       Add another diagram to demo page    :doc1, after a1  , 48h

       section Last section
       Describe gantt syntax               :after doc1, 3d
       Add gantt diagram to demo page      :20h
       Add another diagram to demo page    :48h
Render:
null

State diagram

Code:
mermaid
%%{init: {'securityLevel': 'loose', 'theme':'base'}}%%
      stateDiagram
        [*] --> Active

        state Active {
            [*] --> NumLockOff
            NumLockOff --> NumLockOn : EvNumLockPressed
            NumLockOn --> NumLockOff : EvNumLockPressed
            --
            [*] --> CapsLockOff
            CapsLockOff --> CapsLockOn : EvCapsLockPressed
            CapsLockOn --> CapsLockOff : EvCapsLockPressed
            --
            [*] --> ScrollLockOff
            ScrollLockOff --> ScrollLockOn : EvCapsLockPressed
            ScrollLockOn --> ScrollLockOff : EvCapsLockPressed
        }
        state SomethingElse {
          A --> B
          B --> A
        }

        Active --> SomethingElse
        note right of SomethingElse : This is the note to the right.

        SomethingElse --> [*]

Render:
null

State diagram (beta)

Code:
mermaid
%%{init: {'securityLevel': 'loose', 'theme':'base'}}%%
stateDiagram-v2
        [*] --> Active

        state Active {
            [*] --> NumLockOff
            NumLockOff --> NumLockOn : EvNumLockPressed
            NumLockOn --> NumLockOff : EvNumLockPressed
            --
            [*] --> CapsLockOff
            CapsLockOff --> CapsLockOn : EvCapsLockPressed
            CapsLockOn --> CapsLockOff : EvCapsLockPressed
            --
            [*] --> ScrollLockOff
            ScrollLockOff --> ScrollLockOn : EvCapsLockPressed
            ScrollLockOn --> ScrollLockOff : EvCapsLockPressed
        }
        state SomethingElse {
          A --> B
          B --> A
        }

        Active --> SomethingElse2
        note right of SomethingElse2 : This is the note to the right.

        SomethingElse2 --> [*]
Render:
null

Entity Relations diagram

Code:
mermaid
      erDiagram
        CUSTOMER }|..|{ DELIVERY-ADDRESS : has
        CUSTOMER ||--o{ ORDER : places
        CUSTOMER ||--o{ INVOICE : "liable for"
        DELIVERY-ADDRESS ||--o{ ORDER : receives
        INVOICE ||--|{ ORDER : covers
        ORDER ||--|{ ORDER-ITEM : includes
        PRODUCT-CATEGORY ||--|{ PRODUCT : contains
        PRODUCT ||--o{ ORDER-ITEM : "ordered in"
Render:
null

User journey diagram

Code:
mermaid
journey
            title My working day
            section Go to work
              Make tea: 5: Me
              Go upstairs: 3: Me
              Do work: 1: Me, Cat
            section Go home
              Go downstairs: 5: Me
              Sit down: 5: Me
Render:
null