JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>CSS colors</title>
  <style>
  
  div {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid black;
  }
  
    .hsla {
      background-color: hsla(147, 100%, 50%, 1);
    }
    
    .hex {
      background-color: #00ff73;
    }
    
    .rgba {
      background-color: rgba(0, 255, 115, 1);
    }
  </style>
</head>
<body>
  <div class="hsla">HSLA</div>
  <div class="hex">HEX</div>
  <div class="rgba">RGBA</div>
</body>
</html>