lightning-auth-and-payment
Version:
Lightning Network authentication and payment processing library for modern web applications
39 lines • 1.39 kB
TypeScript
/**
* Design tokens for the Lightning theme system
* Centralized design values for consistent theming
*/
import { Theme, ThemeColors, ThemeSpacing, ThemeTypography, ThemeRadius, ThemeShadows } from './types';
export declare const spacing: ThemeSpacing;
export declare const typography: ThemeTypography;
export declare const radius: ThemeRadius;
export declare const shadows: ThemeShadows;
export declare const lightColors: ThemeColors;
export declare const darkColors: ThemeColors;
export declare const defaultTheme: Theme;
export declare const themePresets: {
readonly light: {
readonly mode: "light";
readonly colors: ThemeColors;
readonly spacing: ThemeSpacing;
readonly typography: ThemeTypography;
readonly radius: ThemeRadius;
readonly shadows: ThemeShadows;
};
readonly dark: {
readonly mode: "dark";
readonly colors: ThemeColors;
readonly spacing: ThemeSpacing;
readonly typography: ThemeTypography;
readonly radius: ThemeRadius;
readonly shadows: ThemeShadows;
};
readonly system: {
readonly mode: "system";
readonly colors: ThemeColors;
readonly spacing: ThemeSpacing;
readonly typography: ThemeTypography;
readonly radius: ThemeRadius;
readonly shadows: ThemeShadows;
};
};
//# sourceMappingURL=tokens.d.ts.map