HTML, CSS or hex color code for color "Brown (web)" is #a52a2a
Hex code | #a52a2a |
---|---|
RGB: | rgb(165,42,42) |
HSV: | ( 0° , 0.75% , 165% ) |
Colors used in web pages are represented using RGB (red, Green, blue) triplet. Each of the primary color component (red, green and blue are the primary colors) is represented using one byte. So, in a color code, there are 3 bytes (24 bits). The first byte is the red component and the next byte is of green and the next one that of blue.
In the case of the color "Brown (web)" the hexadecimal representation is #a52a2a.
You can use the hex code in HTML to change the text color or background color. for example, the code below changes the text color to Brown (web)
<span style="color:#a52a2a"> Your text here </span>
<span style="background-color:#a52a2a"> Your text here </span>