HEX: #EDD8AB
RGB: (237,216,171)
#EDD8AB contains mainly red and green colors. Web safe color of #EDD8AB is #FFCC99 (or #FC9).
#EDD8AB color RGB value is (237,216,171).
RGB: (237,216,171) (93%,85%,67%)
R 237 of 255 = 93%
G 216 of 255 = 85%
B 171 of 255 = 67%
R + G + B ~ 82%. #EDD8AB is quite light color.
R + G + B =
237 + 216 + 171 = 624 (100%)
R 237 of 624 ~ 37.98%
G 216 of 624 ~ 34.62%
B 171 of 624 ~ 27.4%
#EDD8AB color CMYK value is (0,9,28,7).
CMYK: (0,9,28,7) C0M9Y28K7 (0%,9%,28%,7%) (0.00/0.09/0.28/0.07)
ED | D8 | AB | |
---|---|---|---|
RGB | 237 | 216 | 171 |
HSL | 41° | 64.71% | 80.00% |
HSB/HSV | 41° | 27.85% | 92.94% |
CMYK | 0.00% | 8.86% | 27.85% |
7.06% |
HEX | ED | D8 | AB |
Decimal | 237 | 216 | 171 |
Binary | 11101101 | 11011000 | 10101011 |
Octal | 355 | 330 | 253 |
Examples of css and html codes for elements with #EDD8AB color. Also use rgb(237,216,171) instead hex code.
.myTextColor { color: #EDD8AB; }
<p style="color:#EDD8AB">This sample text font color is #EDD8AB.</p>
This text font color is #EDD8AB.
.myBgColor { background-color: #EDD8AB; }
<div style="background-color:#EDD8AB">Inner text</div>
This div background color is #EDD8AB.
.myBorderColor { border: 1px solid #EDD8AB; }
<div style="border:3px solid #EDD8AB">Div</div>
This div border color is #EDD8AB.
.myOpacity80 { color: #EDD8AB; opacity: 0.8; }
<p style="color:#EDD8AB;opacity:0.8;">80%</p>
Text with #EDD8AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDD8AB;}
<p style="text-shadow: 3px 3px 1px #EDD8AB">Text here.</p>
This text has shadow with #EDD8AB color.
.textShadow {text-shadow: 3px 3px 1px #EDD8AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDD8AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDD8AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDD8AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDD8AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDD8AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDD8AB; -webkit-box-shadow: 1px 1px 3px 2px #EDD8AB; box-shadow: 1px 1px 3px 2px #EDD8AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDD8AB; -webkit-box-shadow: 1px 1px 3px 2px #EDD8AB; box-shadow:1px 1px 3px 2px #EDD8AB;">
Div content here</div>
This text has color #EDD8AB on black background.
This text has color #EDD8AB on white background.
This text has black color on #EDD8AB background.
This text has white color on #EDD8AB background.