[Solved] how I can set color of anything in css [closed]


*{
color: #fff;
background: #000;
}

Also you can use the inherit value which will inherit the values from the parent.

body{
    color: #fff;
    background: #000;
}
.inner_element{
    color: inherit;
    background: inherit;
}

solved how I can set color of anything in css [closed]