@oceanbase/design
Version: 
The Design System of OceanBase
57 lines (56 loc) • 1.47 kB
TypeScript
declare const darkTheme: {
    token: {
        colorPrimary: string;
        colorSuccess: string;
        colorWarning: string;
        colorError: string;
        colorInfo: string;
        colorTextBase: string;
        colorBgBase: string;
        colorLink: string;
        fontFamily: string;
        fontFamilyCode: string;
        fontSize: number;
        lineWidth: number;
        lineType: string;
        borderRadius: number;
        sizeUnit: number;
        sizeStep: number;
        sizePopupArrow: number;
        controlHeight: number;
        zIndexBase: number;
        zIndexPopupBase: number;
        opacityImage: number;
        motionUnit: number;
        motionBase: number;
        motionEaseOutCirc: string;
        motionEaseInOutCirc: string;
        motionEaseInOut: string;
        motionEaseOutBack: string;
        motionEaseInBack: string;
        motionEaseInQuint: string;
        motionEaseOutQuint: string;
        motionEaseOut: string;
        wireframe: boolean;
        motion: boolean;
        blue: string;
        purple: string;
        cyan: string;
        green: string;
        magenta: string;
        pink: string;
        red: string;
        orange: string;
        yellow: string;
        volcano: string;
        geekblue: string;
        lime: string;
        gold: string;
    };
    components: {
        InputNumber: {
            handleVisible: boolean;
        };
    };
};
export default darkTheme;