HEX: #E6B871
RGB: (230,184,113)
#E6B871 contains mainly red and green colors. Web safe color of #E6B871 is #CCCC66 (or #CC6).
#E6B871 color RGB value is (230,184,113).
RGB: (230,184,113) (90%,72%,44%)
R 230 of 255 = 90%
G 184 of 255 = 72%
B 113 of 255 = 44%
R + G + B ~ 69%. #E6B871 is quite light color.
R + G + B =
230 + 184 + 113 = 527 (100%)
R 230 of 527 ~ 43.64%
G 184 of 527 ~ 34.91%
B 113 of 527 ~ 21.44%
#E6B871 color CMYK value is (0,20,51,10).
CMYK: (0,20,51,10) C0M20Y51K10 (0%,20%,51%,10%) (0.00/0.20/0.51/0.10)
E6 | B8 | 71 | |
---|---|---|---|
RGB | 230 | 184 | 113 |
HSL | 36° | 70.06% | 67.25% |
HSB/HSV | 36° | 50.87% | 90.20% |
CMYK | 0.00% | 20.00% | 50.87% |
9.80% |
HEX | E6 | B8 | 71 |
Decimal | 230 | 184 | 113 |
Binary | 11100110 | 10111000 | 1110001 |
Octal | 346 | 270 | 161 |
Examples of css and html codes for elements with #E6B871 color. Also use rgb(230,184,113) instead hex code.
.myTextColor { color: #E6B871; }
<p style="color:#E6B871">This sample text font color is #E6B871.</p>
This text font color is #E6B871.
.myBgColor { background-color: #E6B871; }
<div style="background-color:#E6B871">Inner text</div>
This div background color is #E6B871.
.myBorderColor { border: 1px solid #E6B871; }
<div style="border:3px solid #E6B871">Div</div>
This div border color is #E6B871.
.myOpacity80 { color: #E6B871; opacity: 0.8; }
<p style="color:#E6B871;opacity:0.8;">80%</p>
Text with #E6B871 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6B871;}
<p style="text-shadow: 3px 3px 1px #E6B871">Text here.</p>
This text has shadow with #E6B871 color.
.textShadow {text-shadow: 3px 3px 1px #E6B871, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6B871, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6B871 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6B871, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6B871, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6B871 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6B871; -webkit-box-shadow: 1px 1px 3px 2px #E6B871; box-shadow: 1px 1px 3px 2px #E6B871; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6B871; -webkit-box-shadow: 1px 1px 3px 2px #E6B871; box-shadow:1px 1px 3px 2px #E6B871;">
Div content here</div>
This text has color #E6B871 on black background.
This text has color #E6B871 on white background.
This text has black color on #E6B871 background.
This text has white color on #E6B871 background.