mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-27 20:42:52 +00:00
13 lines
272 B
TypeScript
13 lines
272 B
TypeScript
import type { ThemeSetting } from "./type";
|
|
const setting: ThemeSetting = {
|
|
namespace: "el",
|
|
division: "-",
|
|
startDivision: "--",
|
|
colorInferSetting: {
|
|
light: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11],
|
|
dark: [2],
|
|
type: "color",
|
|
},
|
|
};
|
|
export default setting;
|