@shirtiny/logger
Version:
Simple console log with css, write in typescript.
28 lines (27 loc) • 597 B
TypeScript
import { Slider } from "./shape";
export declare enum Colors {
red = "#e72528",
blue = "#2a79af",
weakBlue = "#6eb6f4",
geekblue = "#85a5ff",
gold = "#ffd666",
orange = "#ffa940",
cyan = "#13c2c2",
green = "#52c41a",
volcano = "#fa541c",
lime = "#389e0d",
pink = "#eb2f96",
purple = "#722ed1",
darkPurple = "#292F4C",
gray = "#8c8c8c",
darkGreen = "#3f6600",
cutePurple = "#6a51b2",
groupBlue = "#39B5E0"
}
export declare class Theme {
colors: typeof Colors;
shapes: {
slider: Slider;
};
constructor();
}