UNPKG

adastra-branding

Version:

Adastra ✨ branding is package used to maintain Adastra styling and color palette across all the packages especially the CLI toolkits. Its an internal private package not intended for external distribution.

23 lines (18 loc) 479 B
declare const BRAND: { name: string; author: string; mascot: string; }; declare const COLORS: { yellowGreen: string; spaceBlue: string; lovelyViolet: string; warn: string; error: string; gradient: string[]; }; declare const nouns: string[]; declare const adjectives: string[]; declare const welcome: string[]; declare function renderBrandingUI(title?: string): void; export { BRAND, COLORS, adjectives, nouns, renderBrandingUI, welcome };