18 lines
602 B
JavaScript
18 lines
602 B
JavaScript
// Bootswatch-derived dark starter (frozen). See flatly.js for the built-in model.
|
|
|
|
module.exports = Object.freeze({
|
|
id: "builtin:darkly",
|
|
name: "Darkly",
|
|
engine: "bootstrap5",
|
|
tokens: {
|
|
$tokensVersion: 1,
|
|
colors: {
|
|
primary: "#375a7f", secondary: "#444444", success: "#00bc8c",
|
|
info: "#3498db", warning: "#f39c12", danger: "#e74c3c",
|
|
light: "#adb5bd", dark: "#303030",
|
|
bodyBg: "#222222", bodyColor: "#ffffff",
|
|
},
|
|
components: { linkColor: "#00bc8c" },
|
|
},
|
|
layoutTree: null,
|
|
});
|