CSS code for this palette
/* CSS */
.black {
color: #000000;
}
.red {
color: #ff0000;
}
.white {
color: #ffffff;
}
.yellow {
color: #ffff00;
}
.blue {
color: #0000ff;
}
/* CSS Variables */
:root {
--black:#000000;
--red:#ff0000;
--white:#ffffff;
--yellow:#ffff00;
--blue:#0000ff;
}