HEX: #EDAFB1
RGB: (237,175,177)
#EDAFB1 contains mainly red color. Web safe color of #EDAFB1 is #FF9999 (or #F99).
#EDAFB1 color RGB value is (237,175,177).
RGB: (237,175,177) (93%,69%,69%)
R 237 of 255 = 93%
G 175 of 255 = 69%
B 177 of 255 = 69%
R + G + B ~ 77%. #EDAFB1 is quite light color.
R + G + B =
237 + 175 + 177 = 589 (100%)
R 237 of 589 ~ 40.24%
G 175 of 589 ~ 29.71%
B 177 of 589 ~ 30.05%
#EDAFB1 color CMYK value is (0,26,25,7).
CMYK: (0,26,25,7) C0M26Y25K7 (0%,26%,25%,7%) (0.00/0.26/0.25/0.07)
ED | AF | B1 | |
---|---|---|---|
RGB | 237 | 175 | 177 |
HSL | 358° | 63.27% | 80.78% |
HSB/HSV | 358° | 26.16% | 92.94% |
CMYK | 0.00% | 26.16% | 25.32% |
7.06% |
HEX | ED | AF | B1 |
Decimal | 237 | 175 | 177 |
Binary | 11101101 | 10101111 | 10110001 |
Octal | 355 | 257 | 261 |
Examples of css and html codes for elements with #EDAFB1 color. Also use rgb(237,175,177) instead hex code.
.myTextColor { color: #EDAFB1; }
<p style="color:#EDAFB1">This sample text font color is #EDAFB1.</p>
This text font color is #EDAFB1.
.myBgColor { background-color: #EDAFB1; }
<div style="background-color:#EDAFB1">Inner text</div>
This div background color is #EDAFB1.
.myBorderColor { border: 1px solid #EDAFB1; }
<div style="border:3px solid #EDAFB1">Div</div>
This div border color is #EDAFB1.
.myOpacity80 { color: #EDAFB1; opacity: 0.8; }
<p style="color:#EDAFB1;opacity:0.8;">80%</p>
Text with #EDAFB1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDAFB1;}
<p style="text-shadow: 3px 3px 1px #EDAFB1">Text here.</p>
This text has shadow with #EDAFB1 color.
.textShadow {text-shadow: 3px 3px 1px #EDAFB1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDAFB1, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDAFB1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDAFB1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDAFB1, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDAFB1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDAFB1; -webkit-box-shadow: 1px 1px 3px 2px #EDAFB1; box-shadow: 1px 1px 3px 2px #EDAFB1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDAFB1; -webkit-box-shadow: 1px 1px 3px 2px #EDAFB1; box-shadow:1px 1px 3px 2px #EDAFB1;">
Div content here</div>
This text has color #EDAFB1 on black background.
This text has color #EDAFB1 on white background.
This text has black color on #EDAFB1 background.
This text has white color on #EDAFB1 background.