HEX: #E6B59F
RGB: (230,181,159)
#E6B59F contains mainly red and green colors. Web safe color of #E6B59F is #CCCC99 (or #CC9).
#E6B59F color RGB value is (230,181,159).
RGB: (230,181,159) (90%,71%,62%)
R 230 of 255 = 90%
G 181 of 255 = 71%
B 159 of 255 = 62%
R + G + B ~ 74%. #E6B59F is quite light color.
R + G + B =
230 + 181 + 159 = 570 (100%)
R 230 of 570 ~ 40.35%
G 181 of 570 ~ 31.75%
B 159 of 570 ~ 27.89%
#E6B59F color CMYK value is (0,21,31,10).
CMYK: (0,21,31,10) C0M21Y31K10 (0%,21%,31%,10%) (0.00/0.21/0.31/0.10)
E6 | B5 | 9F | |
---|---|---|---|
RGB | 230 | 181 | 159 |
HSL | 19° | 58.68% | 76.27% |
HSB/HSV | 19° | 30.87% | 90.20% |
CMYK | 0.00% | 21.30% | 30.87% |
9.80% |
HEX | E6 | B5 | 9F |
Decimal | 230 | 181 | 159 |
Binary | 11100110 | 10110101 | 10011111 |
Octal | 346 | 265 | 237 |
Examples of css and html codes for elements with #E6B59F color. Also use rgb(230,181,159) instead hex code.
.myTextColor { color: #E6B59F; }
<p style="color:#E6B59F">This sample text font color is #E6B59F.</p>
This text font color is #E6B59F.
.myBgColor { background-color: #E6B59F; }
<div style="background-color:#E6B59F">Inner text</div>
This div background color is #E6B59F.
.myBorderColor { border: 1px solid #E6B59F; }
<div style="border:3px solid #E6B59F">Div</div>
This div border color is #E6B59F.
.myOpacity80 { color: #E6B59F; opacity: 0.8; }
<p style="color:#E6B59F;opacity:0.8;">80%</p>
Text with #E6B59F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6B59F;}
<p style="text-shadow: 3px 3px 1px #E6B59F">Text here.</p>
This text has shadow with #E6B59F color.
.textShadow {text-shadow: 3px 3px 1px #E6B59F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6B59F, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6B59F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6B59F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6B59F, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6B59F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6B59F; -webkit-box-shadow: 1px 1px 3px 2px #E6B59F; box-shadow: 1px 1px 3px 2px #E6B59F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6B59F; -webkit-box-shadow: 1px 1px 3px 2px #E6B59F; box-shadow:1px 1px 3px 2px #E6B59F;">
Div content here</div>
This text has color #E6B59F on black background.
This text has color #E6B59F on white background.
This text has black color on #E6B59F background.
This text has white color on #E6B59F background.