aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
54 lines • 1.92 kB
TypeScript
export declare const auroraPresets: {
readonly subtle: {
readonly intensity: 0.6;
readonly speed: 0.5;
readonly particleCount: 30;
readonly colorPalette: "arctic";
readonly animationMode: "flow";
};
readonly dynamic: {
readonly intensity: 1;
readonly speed: 1;
readonly particleCount: 50;
readonly colorPalette: "cosmic";
readonly animationMode: "mixed";
};
readonly intense: {
readonly intensity: 1.5;
readonly speed: 1.5;
readonly particleCount: 80;
readonly colorPalette: "sunset";
readonly animationMode: "pulse";
};
readonly serene: {
readonly intensity: 0.4;
readonly speed: 0.3;
readonly particleCount: 20;
readonly colorPalette: "ocean";
readonly animationMode: "shift";
};
};
export declare const auroraThemes: {
readonly northern: {
readonly background: "linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%)";
readonly glassColor: "rgba(79, 195, 247, 0.1)";
readonly accentColor: "#4fc3f7";
};
readonly mystical: {
readonly background: "linear-gradient(180deg, #0f0f23 0%, #1a1a2e 50%, #2d1b69 100%)";
readonly glassColor: "rgba(186, 104, 200, 0.1)";
readonly accentColor: "#ba68c8";
};
readonly tropical: {
readonly background: "linear-gradient(180deg, #0c0c0c 0%, #1a1a2e 50%, #0f3460 100%)";
readonly glassColor: "rgba(0, 188, 212, 0.1)";
readonly accentColor: "#00bcd4";
};
readonly enchanted: {
readonly background: "linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%)";
readonly glassColor: "rgba(255, 152, 77, 0.1)";
readonly accentColor: "#ff9843";
};
};
export type AuroraPresetName = keyof typeof auroraPresets;
//# sourceMappingURL=AuroraPro.presets.d.ts.map