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

[ad_1]

*{
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;
}

[ad_2]

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