how do you change the background color with elements: subtle

Viewed 24
    .subtle {background-color: rgb(0,0,255); }

i can't get background color to be blue

1 Answers

For example, like this:

.subtle {
  background-color: rgb(0, 0, 255);
  height: 200px;
  width: 200px;
  color: #fff;
}
<div class="subtle">content</div>

Related