Merge pull request #1558 from mermaid-js/less_theme_variables

More theming tweaks
This commit is contained in:
Knut Sveidqvist
2020-07-20 17:37:18 +02:00
committed by GitHub
15 changed files with 274 additions and 54 deletions

View File

@@ -53,7 +53,7 @@ import configApi from './config';
import getStyles from './styles';
const themes = {};
for (const themeName of ['default', 'forest', 'dark', 'neutral']) {
for (const themeName of ['default', 'forest', 'dark', 'neutral', 'base']) {
themes[themeName] = require(`./themes/theme-${themeName}.js`);
}