CSS code for this palette
/* CSS */
.black {
color: #000000;
}
.grey {
color: #808080;
}
.silver {
color: #bfbfbf;
}
.mercury {
color: #ebebeb;
}
.white {
color: #ffffff;
}
/* CSS Variables */
:root {
--black:#000000;
--grey:#808080;
--silver:#bfbfbf;
--mercury:#ebebeb;
--white:#ffffff;
}