13 lines
448 B
TypeScript
13 lines
448 B
TypeScript
import type { ThemeCommonVars } from '../../_styles/common';
|
|
import type { Theme } from '../../_mixins';
|
|
export declare function self(vars: ThemeCommonVars): {
|
|
fontSize: string;
|
|
titleTextColor: string;
|
|
textColor: string;
|
|
titleFontWeight: string;
|
|
};
|
|
export type ThingThemeVars = ReturnType<typeof self>;
|
|
declare const thingLight: Theme<'Thing', ThingThemeVars>;
|
|
export default thingLight;
|
|
export type ThingTheme = typeof thingLight;
|