change color css code example
Example 1: text color css
.class {
color: white;
}
Example 2: text background color css
body {
background-color:rgb(130, 50, 29);
}
.class {
color: white;
}
body {
background-color:rgb(130, 50, 29);
}