@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
36 lines (35 loc) • 576 B
JavaScript
//#region src/Mermaid/const.ts
const mermaidThemes = [
{
displayName: "Lobe Theme",
id: "lobe-theme"
},
{
background: "#fbf9ff",
displayName: "Mermaid Default",
id: "default"
},
{
background: "#fffcf8",
displayName: "Mermaid Base",
id: "base"
},
{
background: "#000",
displayName: "Mermaid Dark",
id: "dark"
},
{
background: "#f9ffeb",
displayName: "Mermaid Forest",
id: "forest"
},
{
background: "#fff",
displayName: "Mermaid Neutral",
id: "neutral"
}
];
//#endregion
export { mermaidThemes };
//# sourceMappingURL=const.mjs.map