#**Cool code blocks w/ animation**

1 messages · Page 1 of 1 (latest)

high venture
#

opening this to say that theme sure is something

true ginkgo
#

That looks really cool, 10/10 blobcatcozy

elder quest
#

pausechamp2 actually epic, who cooked these keyframes? pog

zinc bluff
zealous plover
#

you can remain in the kitchen, your cooking license will not be revoked

proper glade
#

the random floating point imprecisions left in really adds to the flavour

lavish timber
#

Is there a way to change the pastel gradient colors?

zinc bluff
# lavish timber Is there a way to change the pastel gradient colors?

catnod

The colors are defined at line 255, here:

  .footer_d8e2d0 {
      background: linear-gradient(135deg, 
          rgba(255, 183, 197, 0.6),  
          rgba(255, 223, 186, 0.6),  
          rgba(255, 249, 196, 0.6),  
          rgba(202, 255, 191, 0.6),  
          rgba(186, 244, 255, 0.6),  
          rgba(206, 186, 255, 0.6)
      );
      background-size: 400% 400%;
      animation: gradientAnimation 10s ease infinite;
      
      backdrop-filter: blur(15px) saturate(180%);
      -webkit-backdrop-filter: blur(15px) saturate(180%);
      
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }```

You can change them to whatever you'd like.