Themes
Mermaid supports an array of different base themes.
- Graph
- Output
---
config:
theme: forest
---
gitGraph
commit
branch developer
commit
commit
Siren makes setting a theme easy!
- F#
- C#
- Python
- JavaScript
siren.git [
git.commit()
git.branch "developer"
git.commit()
git.commit()
]
|> siren.withTheme (theme.forest)
|> siren.write
siren.git
([
git.commit(),
git.branch("developer"),
git.commit(),
git.commit(),
])
.withTheme(theme.forest)
.write();
siren.git([
git.commit(),
git.branch("developer"),
git.commit(),
git.commit(),
])
.with_theme(theme.forest())
.write()
siren.git([
git.commit(),
git.branch("developer"),
git.commit(),
git.commit(),
])
.withTheme(theme.forest)
.write();