mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-24 09:49:46 +02:00
228 lines
8.9 KiB
JavaScript
228 lines
8.9 KiB
JavaScript
import { invert, lighten, rgba, adjust } from 'khroma';
|
|
import { mkBorder } from './theme-helpers';
|
|
|
|
class Theme {
|
|
constructor() {
|
|
/* Base variables */
|
|
this.background = '#f4f4f4';
|
|
this.primaryColor = '#ECECFF';
|
|
|
|
this.secondaryColor = adjust(this.primaryColor, { h: 120 });
|
|
this.secondaryColor = '#ffffde';
|
|
this.tertiaryColor = adjust(this.primaryColor, { h: -160 });
|
|
this.primaryBorderColor = mkBorder(this.primaryColor, this.darkMode);
|
|
this.secondaryBorderColor = mkBorder(this.secondaryColor, this.darkMode);
|
|
this.tertiaryBorderColor = mkBorder(this.tertiaryColor, this.darkMode);
|
|
// this.noteBorderColor = mkBorder(this.noteBkgColor, this.darkMode);
|
|
|
|
this.primaryTextColor = invert(this.primaryColor);
|
|
this.secondaryTextColor = invert(this.secondaryColor);
|
|
this.tertiaryTextColor = invert(this.tertiaryColor);
|
|
this.lineColor = invert(this.background);
|
|
this.textColor = invert(this.background);
|
|
|
|
this.background = 'white';
|
|
this.mainBkg = '#ECECFF';
|
|
this.secondBkg = '#ffffde';
|
|
this.lineColor = '#333333';
|
|
this.border1 = '#9370DB';
|
|
this.border2 = '#aaaa33';
|
|
this.arrowheadColor = '#333333';
|
|
this.fontFamily = '"trebuchet ms", verdana, arial, sans-serif';
|
|
this.fontSize = '16px';
|
|
this.labelBackground = '#e8e8e8';
|
|
this.textColor = '#333';
|
|
|
|
/* Flowchart variables */
|
|
|
|
this.nodeBkg = 'calculated';
|
|
this.nodeBorder = 'calculated';
|
|
this.clusterBkg = 'calculated';
|
|
this.clusterBorder = 'calculated';
|
|
this.defaultLinkColor = 'calculated';
|
|
this.titleColor = 'calculated';
|
|
this.edgeLabelBackground = 'calculated';
|
|
|
|
/* Sequence Diagram variables */
|
|
|
|
this.actorBorder = 'calculated';
|
|
this.actorBkg = 'calculated';
|
|
this.actorTextColor = 'black';
|
|
this.actorLineColor = 'grey';
|
|
this.signalColor = 'calculated';
|
|
this.signalTextColor = 'calculated';
|
|
this.labelBoxBkgColor = 'calculated';
|
|
this.labelBoxBorderColor = 'calculated';
|
|
this.labelTextColor = 'calculated';
|
|
this.loopTextColor = 'calculated';
|
|
this.noteBorderColor = 'calculated';
|
|
this.noteBkgColor = '#fff5ad';
|
|
this.noteTextColor = 'calculated';
|
|
this.activationBorderColor = '#666';
|
|
this.activationBkgColor = '#f4f4f4';
|
|
this.sequenceNumberColor = 'white';
|
|
|
|
/* Gantt chart variables */
|
|
|
|
this.sectionBkgColor = 'calculated';
|
|
this.altSectionBkgColor = 'calculated';
|
|
this.sectionBkgColor2 = 'calculated';
|
|
this.taskBorderColor = 'calculated';
|
|
this.taskBkgColor = 'calculated';
|
|
this.taskTextLightColor = 'calculated';
|
|
this.taskTextColor = this.taskTextLightColor;
|
|
this.taskTextDarkColor = 'calculated';
|
|
this.taskTextOutsideColor = this.taskTextDarkColor;
|
|
this.taskTextClickableColor = 'calculated';
|
|
this.activeTaskBorderColor = 'calculated';
|
|
this.activeTaskBkgColor = 'calculated';
|
|
this.gridColor = 'calculated';
|
|
this.doneTaskBkgColor = 'calculated';
|
|
this.doneTaskBorderColor = 'calculated';
|
|
this.critBorderColor = 'calculated';
|
|
this.critBkgColor = 'calculated';
|
|
this.todayLineColor = 'calculated';
|
|
|
|
this.sectionBkgColor = rgba(102, 102, 255, 0.49);
|
|
this.altSectionBkgColor = 'white';
|
|
this.sectionBkgColor2 = '#fff400';
|
|
this.taskBorderColor = '#534fbc';
|
|
this.taskBkgColor = '#8a90dd';
|
|
this.taskTextLightColor = 'white';
|
|
this.taskTextColor = 'calculated';
|
|
this.taskTextDarkColor = 'black';
|
|
this.taskTextOutsideColor = 'calculated';
|
|
this.taskTextClickableColor = '#003163';
|
|
this.activeTaskBorderColor = '#534fbc';
|
|
this.activeTaskBkgColor = '#bfc7ff';
|
|
this.gridColor = 'lightgrey';
|
|
this.doneTaskBkgColor = 'lightgrey';
|
|
this.doneTaskBorderColor = 'grey';
|
|
this.critBorderColor = '#ff8888';
|
|
this.critBkgColor = 'red';
|
|
this.todayLineColor = 'red';
|
|
|
|
/* state colors */
|
|
this.labelColor = 'black';
|
|
this.errorBkgColor = '#552222';
|
|
this.errorTextColor = '#552222';
|
|
this.updateColors();
|
|
}
|
|
updateColors() {
|
|
/* Flowchart variables */
|
|
|
|
this.nodeBkg = this.mainBkg;
|
|
this.nodeBorder = this.border1; // border 1
|
|
this.clusterBkg = this.secondBkg;
|
|
this.clusterBorder = this.border2;
|
|
this.defaultLinkColor = this.lineColor;
|
|
this.titleColor = this.textColor;
|
|
this.edgeLabelBackground = this.labelBackground;
|
|
|
|
/* Sequence Diagram variables */
|
|
|
|
// this.actorBorder = lighten(this.border1, 0.5);
|
|
this.actorBorder = lighten(this.border1, 23);
|
|
this.actorBkg = this.mainBkg;
|
|
this.labelBoxBkgColor = this.actorBkg;
|
|
this.signalColor = this.textColor;
|
|
this.signalTextColor = this.textColor;
|
|
this.labelBoxBorderColor = this.actorBorder;
|
|
this.labelTextColor = this.actorTextColor;
|
|
this.loopTextColor = this.actorTextColor;
|
|
this.noteBorderColor = this.border2;
|
|
this.noteTextColor = this.actorTextColor;
|
|
|
|
/* Gantt chart variables */
|
|
|
|
this.taskTextColor = this.taskTextLightColor;
|
|
this.taskTextOutsideColor = this.taskTextDarkColor;
|
|
|
|
/* state colors */
|
|
this.transitionColor = this.transitionColor || this.lineColor;
|
|
this.transitionLabelColor = this.transitionLabelColor || this.textColor;
|
|
this.stateLabelColor = this.stateLabelColor || this.stateBkg || this.primaryTextColor;
|
|
|
|
this.stateBkg = this.stateBkg || this.mainBkg;
|
|
this.labelBackgroundColor = this.labelBackgroundColor || this.stateBkg;
|
|
this.compositeBackground = this.compositeBackground || this.background || this.tertiaryColor;
|
|
this.altBackground = this.altBackground || '#f0f0f0';
|
|
this.clusterTitleBackground = this.clusterTitleBackground || this.mainBkg;
|
|
this.compositeBorder = this.compositeBorder || this.nodeBorder;
|
|
|
|
this.errorBkgColor = this.errorBkgColor || this.tertiaryColor;
|
|
this.errorTextColor = this.errorTextColor || this.tertiaryTextColor;
|
|
this.transitionColor = this.transitionColor || this.lineColor;
|
|
/* class */
|
|
this.classText = this.primaryTextColor;
|
|
/* journey */
|
|
this.fillType0 = this.primaryColor;
|
|
this.fillType1 = this.secondaryColor;
|
|
this.fillType2 = adjust(this.primaryColor, { h: 64 });
|
|
this.fillType3 = adjust(this.secondaryColor, { h: 64 });
|
|
this.fillType4 = adjust(this.primaryColor, { h: -64 });
|
|
this.fillType5 = adjust(this.secondaryColor, { h: -64 });
|
|
this.fillType6 = adjust(this.primaryColor, { h: 128 });
|
|
this.fillType7 = adjust(this.secondaryColor, { h: 128 });
|
|
|
|
/* pie */
|
|
this.pie1 = this.pie1 || this.primaryColor;
|
|
this.pie2 = this.pie2 || this.secondaryColor;
|
|
this.pie3 = this.pie3 || adjust(this.tertiaryColor, { l: -40 });
|
|
this.pie4 = this.pie4 || adjust(this.primaryColor, { l: -10 });
|
|
this.pie5 = this.pie5 || adjust(this.secondaryColor, { l: -30 });
|
|
this.pie6 = this.pie6 || adjust(this.tertiaryColor, { l: -20 });
|
|
this.pie7 = this.pie7 || adjust(this.primaryColor, { h: +60, l: -20 });
|
|
this.pie8 = this.pie8 || adjust(this.primaryColor, { h: -60, l: -40 });
|
|
this.pie9 = this.pie9 || adjust(this.primaryColor, { h: 120, l: -40 });
|
|
this.pie10 = this.pie10 || adjust(this.primaryColor, { h: +60, l: -40 });
|
|
this.pie11 = this.pie11 || adjust(this.primaryColor, { h: -90, l: -40 });
|
|
this.pie12 = this.pie12 || adjust(this.primaryColor, { h: 120, l: -30 });
|
|
this.pieTitleTextSize = this.pieTitleTextSize || '25px';
|
|
this.pieTitleTextColor = this.pieTitleTextColor || this.taskTextDarkColor;
|
|
this.pieSectionTextSize = this.pieSectionTextSize || '17px';
|
|
this.pieSectionTextColor = this.pieSectionTextColor || this.textColor;
|
|
this.pieLegendTextSize = this.pieLegendTextSize || '17px';
|
|
this.pieLegendTextColor = this.pieLegendTextColor || this.taskTextDarkColor;
|
|
this.pieStrokeColor = this.pieStrokeColor || 'black';
|
|
this.pieStrokeWidth = this.pieStrokeWidth || '2px';
|
|
this.pieOpacity = this.pieOpacity || '0.7';
|
|
|
|
/* requirement-diagram */
|
|
this.requirementBackground = this.requirementBackground || this.primaryColor;
|
|
this.requirementBorderColor = this.requirementBorderColor || this.primaryBorderColor;
|
|
this.requirementBorderSize = this.requirementBorderSize || this.primaryBorderColor;
|
|
this.requirementTextColor = this.requirementTextColor || this.primaryTextColor;
|
|
this.relationColor = this.relationColor || this.lineColor;
|
|
this.relationLabelBackground = this.relationLabelBackground || this.labelBackground;
|
|
this.relationLabelColor = this.relationLabelColor || this.actorTextColor;
|
|
}
|
|
calculate(overrides) {
|
|
if (typeof overrides !== 'object') {
|
|
// Calculate colors form base colors
|
|
this.updateColors();
|
|
return;
|
|
}
|
|
|
|
const keys = Object.keys(overrides);
|
|
|
|
// Copy values from overrides, this is mainly for base colors
|
|
keys.forEach(k => {
|
|
this[k] = overrides[k];
|
|
});
|
|
|
|
// Calculate colors form base colors
|
|
this.updateColors();
|
|
// Copy values from overrides again in case of an override of derived value
|
|
keys.forEach(k => {
|
|
this[k] = overrides[k];
|
|
});
|
|
}
|
|
}
|
|
|
|
export const getThemeVariables = userOverrides => {
|
|
const theme = new Theme();
|
|
theme.calculate(userOverrides);
|
|
return theme;
|
|
};
|