Skip to content
  • Benjamin Otte's avatar
    css: Add support for conic-gradient() · e622013f
    Benjamin Otte authored
    This comes complete with animation support. For a good time, try:
    
    @keyframes conic {
      100% { background-image: conic-gradient(from 1turn, red, lime, blue, yellow, red); }
    }
    
    window {
      background-image: conic-gradient(red, lime, blue, yellow, red);
      animation: conic infinite linear 5s;
    }
    e622013f