11 lines
324 B
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import type { Theme } from '../../_mixins';
2024-08-02 18:19:39 +08:00
declare function self(): {
2024-01-29 09:26:07 +08:00
gapSmall: string;
gapMedium: string;
gapLarge: string;
};
export type SpaceThemeVars = ReturnType<typeof self>;
declare const spaceLight: Theme<'Space', SpaceThemeVars>;
export default spaceLight;
export type SpaceTheme = typeof spaceLight;