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