Use Hex Code for Specific Colors Problem

Is there something wrong with this assignment? I am getting an error of

Use the hex code for the color black instead of the word black. For example body { color: #000000; }

But I already changed the background-color to 000000…

Your code so far

<style>
  body {
    background-color: 000000;
  }
</style>```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36```.

**Link to the challenge:**
https://www.freecodecamp.org/challenges/use-hex-code-for-specific-colors

Look closely. You’re missing a #

Thanks. I just figured that out…