Untitled

 avatar
unknown
plain_text
2 months ago
868 B
1
Indexable
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Alternative Color Palette</title>
  <style>
    body {
      margin: 0;
      padding: 0;
    }
    .palette {
      display: flex;
    }
    .color-block {
      width: 100px;
      height: 100px;
      margin: 0;
      border: none;
    }
  </style>
</head>
<body>
  <div class="palette">
    <!-- Deep Burgundy -->
    <div class="color-block" style="background-color: #5D1A1A;"></div>
    <!-- Golden Mustard -->
    <div class="color-block" style="background-color: #E3A72F;"></div>
    <!-- Warm Taupe -->
    <div class="color-block" style="background-color: #A89C8D;"></div>
    <!-- Soft Lavender Gray -->
    <div class="color-block" style="background-color: #D3CEDF;"></div>
    <!-- Teal Blue -->
    <div class="color-block" style="background-color: #1F6F78;"></div>
  </div>
</body>
</html>
Editor is loading...
Leave a Comment