MaxKB/ui/src/theme/setting.ts
2023-09-15 17:40:35 +08:00

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;