/*
Source - https://stackoverflow.com/a/49071078
Posted by Max Wolfen, modified by community. See post 'Timeline' for change history
Retrieved 2026-05-30, License - CC BY-SA 4.0
*/

.box {
  float: left;
  height: 15px;
  width: 15px;
  border: 1px solid black;
  clear: both;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

.blue {
  background-color: blue;
}

.purple {
    background-color: purple;
}

.cyan {
    background-color: cyan;
}

.orange {
    background-color: orange;
}

.lightpurple {
    background-color: lightpink;
}

.lightgreen {
    background-color: lightgreen;
}

.gray {
    background-color: gray;
}