Skip to main content
creating-aurora-background Creates a multi-layer CSS aurora gradient background with twinkling stars and talk-change pulse effects. Uses GPU-accelerated CSS animations and seeded random star placement. No JavaScript animation loop. Use when adding atmospheric effects to a dark-themed display.
Aller à l'installation Skills Marketplace Découvrez et explorez les compétences IA créées par la communauté.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Copier le promptAfficher les détails du prompt Une commande directe contourne le prompt de vérification. Examinez la source avant de l'exécuter.
npx skills add https://github.com/Continero/rbcn2026-agenda --skill creating-aurora-backgroundLa commande reste sur une seule ligne. Faites défiler horizontalement pour la vérifier avant de la copier.
Vous préférez une copie locale ? Téléchargez les fichiers actuellement disponibles dans SkillsMP.
Télécharger Zip Téléchargement... Plus depuis ce dépôt Adds CSS animation effects to conference UI - progress bar shimmer sweep, current talk glow breathe, up-next border shift, and golden shimmer for special events. All pure CSS, no JavaScript. Use when adding polish animations to UI components.
applying-conference-branding Establishes conference visual identity with custom fonts, color palettes, and Tailwind CSS v4 design tokens. Covers self-hosted font setup, @theme inline configuration, and typography hierarchy. Use when applying brand styling to a conference display.
building-conference-agenda Orchestrates building a live conference agenda display from scratch using Next.js, Tailwind CSS, and animated backgrounds. Guides through 5 phases referencing specialized sub-skills. Use when starting a new conference agenda project or replicating the RoboCon 2026 display.
Basé sur la classification professionnelle SOC
name creating-aurora-background description Creates a multi-layer CSS aurora gradient background with twinkling stars and talk-change pulse effects. Uses GPU-accelerated CSS animations and seeded random star placement. No JavaScript animation loop. Use when adding atmospheric effects to a dark-themed display.
Creating Aurora Background
Pure-CSS atmospheric background with three drifting aurora layers and 70 twinkling stars. Pulses brighter on talk change.
Architecture
Aurora layers : 3 divs with radial gradients, animated via CSS background-position
Stars : 70 spans with seeded random positions, CSS opacity animation
Pulse : CSS class toggled by React on talk change
No JS loop — all CSS keyframes
Component
"use client" ;
import { useMemo } from "react" ;
function generateStars (count : number , seed : number ) {
let s = seed;
const rand = ( ) => { s = (s * 16807 ) % 2147483647 ; return s / 2147483647 ; };
}
( ) {
stars = ( ( , ), []);
(
);
}
export
function
AuroraBackground
{ pulse }: { pulse?: boolean }
const
useMemo
() =>
generateStars
70
42
return
<div className ={ `aurora-bg ${pulse ? "aurora-pulse-active " : ""}`}>
<div className ="aurora-layer aurora-layer-1" />
<div className ="aurora-layer aurora-layer-2" />
<div className ="aurora-layer aurora-layer-3" />
{stars.map((star, i) => <span key ={i} style ={{...}} /> )}
</div >
Aurora CSS (aurora.css)
Container .aurora-bg { position : fixed; inset : 0 ; z-index : 0 ; pointer-events : none; overflow : hidden; }
.aurora-layer { position : absolute; inset : 0 ; }
Three Layers Layer 1 — Deep base (magenta/indigo, 40s) :
.aurora-layer-1 {
background :
radial-gradient (ellipse 80% 60% at 20% 80% , rgba (31 , 27 , 159 , 0.35 ) 0% , transparent 70% ),
radial-gradient (ellipse 60% 50% at 80% 70% , rgba (255 , 0 , 225 , 0.15 ) 0% , transparent 60% );
background-size : 200% 200% ;
animation : aurora-drift-1 40s ease-in-out infinite;
will-change : background-position;
}
Layer 2 — Mid band (teal/lime, 25s) :
.aurora-layer-2 {
background :
radial-gradient (ellipse 70% 40% at 50% 30% , rgba (0 , 192 , 181 , 0.15 ) 0% , transparent 60% ),
radial-gradient (ellipse 50% 35% at 30% 50% , rgba (187 , 196 , 70 , 0.08 ) 0% , transparent 50% );
background-size : 250% 250% ;
animation : aurora-drift-2 25s ease-in-out infinite;
}
Layer 3 — Highlight (bright teal, 15s) :
.aurora-layer-3 {
background :
radial-gradient (ellipse 40% 30% at 60% 40% , rgba (0 , 192 , 181 , 0.10 ) 0% , transparent 50% );
background-size : 300% 300% ;
animation : aurora-drift-3 15s ease-in-out infinite;
}
Drift Keyframes Each layer shifts background-position between waypoints. Different numbers of waypoints create non-repeating patterns:
@keyframes aurora-drift-1 {
0% , 100% { background-position : 0% 80% ; }
50% { background-position : 80% 20% ; }
}
Star Twinkle @keyframes twinkle-slow { 0% , 100% { opacity : 0.3 ; } 50% { opacity : 0.7 ; } }
@keyframes twinkle-mid { 0% , 100% { opacity : 0.2 ; } 50% { opacity : 0.6 ; } }
@keyframes twinkle-fast { 0% , 100% { opacity : 0.4 ; } 50% { opacity : 0.9 ; } }
Pulse on Talk Change .aurora-bg .aurora-pulse-active .aurora-layer-2 {
animation : aurora-drift-2 25s ease-in-out infinite, aurora-pulse 4s ease-out forwards;
}
@keyframes aurora-pulse {
0% { opacity : 1 ; } 15% { opacity : 2.3 ; } 100% { opacity : 1 ; }
}
useEffect (() => {
if (prevItemId.current !== null && currentId !== prevItemId.current ) {
setAuroraPulse (true );
setTimeout (() => setAuroraPulse (false ), 4000 );
}
prevItemId.current = currentId;
}, [state.currentItem ?.id ]);
Performance
will-change: background-position on aurora layers
Stars use will-change: opacity
Seeded random via useMemo — no re-computation
~73 DOM elements total, all CSS-animated