how to override a custom text color of body in a particular text use default text color code example
Example 1: custom selection color css
::selection {
color: #000000;
background-color: red;
}
/* for firefox */
::moz-selection {
color: #000000;
background-color: red;
}
Example 2: text background color css
body {
background-color:rgb(130, 50, 29);
}