HEX: #DEB887
RGB: (222,184,135)
Color name is BurlyWood. #DEB887 contains mainly red and green colors. Web safe color of #DEB887 is #CCCC99 (or #CC9).
#DEB887 color RGB value is (222,184,135).
RGB: (222,184,135) (87%,72%,53%)
R 222 of 255 = 87%
G 184 of 255 = 72%
B 135 of 255 = 53%
R + G + B ~ 71%. #DEB887 is quite light color.
R + G + B =
222 + 184 + 135 = 541 (100%)
R 222 of 541 ~ 41.04%
G 184 of 541 ~ 34.01%
B 135 of 541 ~ 24.95%
#DEB887 color CMYK value is (0,17,39,13).
CMYK: (0,17,39,13) C0M17Y39K13 (0%,17%,39%,13%) (0.00/0.17/0.39/0.13)
DE | B8 | 87 | |
---|---|---|---|
RGB | 222 | 184 | 135 |
HSL | 34° | 56.86% | 70.00% |
HSB/HSV | 34° | 39.19% | 87.06% |
CMYK | 0.00% | 17.12% | 39.19% |
12.94% |
HEX | DE | B8 | 87 |
Decimal | 222 | 184 | 135 |
Binary | 11011110 | 10111000 | 10000111 |
Octal | 336 | 270 | 207 |
Examples of css and html codes for elements with #DEB887 color. Also use rgb(222,184,135) instead hex code.
.myTextColor { color: #DEB887; }
<p style="color:#DEB887">This sample text font color is #DEB887.</p>
This text font color is #DEB887.
.myBgColor { background-color: #DEB887; }
<div style="background-color:#DEB887">Inner text</div>
This div background color is #DEB887.
.myBorderColor { border: 1px solid #DEB887; }
<div style="border:3px solid #DEB887">Div</div>
This div border color is #DEB887.
.myOpacity80 { color: #DEB887; opacity: 0.8; }
<p style="color:#DEB887;opacity:0.8;">80%</p>
Text with #DEB887 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DEB887;}
<p style="text-shadow: 3px 3px 1px #DEB887">Text here.</p>
This text has shadow with #DEB887 color.
.textShadow {text-shadow: 3px 3px 1px #DEB887, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DEB887, 5px 5px 20px red">Text here.</p>
This text has shadow with #DEB887 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DEB887, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DEB887, Direction=45, Strength=4)">Text</p>
This text has shadow with #DEB887 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DEB887; -webkit-box-shadow: 1px 1px 3px 2px #DEB887; box-shadow: 1px 1px 3px 2px #DEB887; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DEB887; -webkit-box-shadow: 1px 1px 3px 2px #DEB887; box-shadow:1px 1px 3px 2px #DEB887;">
Div content here</div>
This text has color #DEB887 on black background.
This text has color #DEB887 on white background.
This text has black color on #DEB887 background.
This text has white color on #DEB887 background.