SkillAgentSearch skills...

Auroral

Animated background gradients with pure CSS

Install / Use

/learn @LunarLogic/Auroral
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Auroral - Animated background gradients

Auroral is a collection of animated background gradients, that can be used almost anywhere. They are built with pure CSS. To learn how it works, read the article.

Demo

You can test all effects on the Auroral demo page.

#How to use

  1. Include a container for a background inside a wanted element. It needs to have one of the auroral classes.

    <section class="your-container">
      <div class="auroral-northern"></div>
    </section>
    
  2. In the head of your html file, add auroral stylesheet. Of course, you can add minified version instead.

    <head>
      <link rel="stylesheet" type="text/css" href="css/auroral.css"/>
    </head>
    

    Or:

    <head>
      <link rel="stylesheet" type="text/css" href="css/auroral.min.css"/>
    </head>
    
  3. Make sure, that your container (the one in which you put the auroral container) has these rules in CSS:

    .your-container {
      display: block; // if it is not a block element
      position: relative;
      overflow: hidden;
    }
    

Stars!

What is a night sky without the stars? Add them by appending an element with the auroral-stars class right after the auroral container:

  <section class="your-container">
    <div class="auroral-northern"></div>
    <div class="auroral-stars"></div>
  </section>

If you know how to use Sass you can play with the $star-number variable, to make sure there is a right amount of them! It sits in _stars.scss partial.

#Backgrounds

Currently available backgrounds (class names to be used in your container):

License

The library is licensed under The MIT License (MIT).

Go to Lunar Logic website to learn more about us and our work.

View on GitHub
GitHub Stars286
CategoryDevelopment
Updated3d ago
Forks20

Languages

CSS

Security Score

95/100

Audited on Apr 2, 2026

No findings