blog / src /constants /constants.ts
cacode's picture
Upload 434 files
96dd062 verified
export const PAGE_SIZE = 8;
export const LIGHT_MODE = "light",
DARK_MODE = "dark",
SYSTEM_MODE = "system";
export const DEFAULT_THEME = LIGHT_MODE; // 仅作为向后兼容的默认值,实际使用 siteConfig.themeColor.defaultMode
// Wallpaper modes
export const WALLPAPER_BANNER = "banner",
WALLPAPER_OVERLAY = "overlay",
WALLPAPER_NONE = "none";
// Banner height unit: vh
export const BANNER_HEIGHT = 35;
export const BANNER_HEIGHT_EXTEND = 30;
export const BANNER_HEIGHT_HOME = BANNER_HEIGHT + BANNER_HEIGHT_EXTEND;
// The height the main panel overlaps the banner, unit: rem
export const MAIN_PANEL_OVERLAPS_BANNER_HEIGHT = 3.5;
// Page width: rem
export const PAGE_WIDTH = 90;
// Category constants
export const UNCATEGORIZED = "uncategorized";