HEX: #EDB6EC
RGB: (237,182,236)
#EDB6EC contains red, green and blue colors in about the same proportion. #EDB6EC ‘ nin web güvenlik rengi #FFCCFF (ya da #FCF) dir.
#EDB6EC color RGB value is (237,182,236).
RGB: (237,182,236) (93%,71%,93%)
R 237 of 255 = 93%
G 182 of 255 = 71%
B 236 of 255 = 93%
R + G + B ~ 86%. #EDB6EC is light color.
R + G + B =
237 + 182 + 236 = 655 (100%)
R 237 of 655 ~ 36.18%
G 182 of 655 ~ 27.79%
B 236 of 655 ~ 36.03%
#EDB6EC rengi CMYK tonu (0,23,0,7).
CMYK: (0,23,0,7) C0M23Y0K7 (0%,23%,0%,7%) (0.00/0.23/0.00/0.07)
ED | B6 | EC | |
---|---|---|---|
RGB | 237 | 182 | 236 |
HSL | 301° | 60.44% | 82.16% |
HSB/HSV | 301° | 23.21% | 92.94% |
CMYK | 0.00% | 23.21% | 0.42% |
7.06% |
HEX | ED | B6 | EC |
Decimal | 237 | 182 | 236 |
Binary | 11101101 | 10110110 | 11101100 |
Octal | 355 | 266 | 354 |
Examples of css and html codes for elements with #EDB6EC color. Also use rgb(237,182,236) instead hex code.
.myTextColor { color: #EDB6EC; }
<p style="color:#EDB6EC">This sample text font color is #EDB6EC.</p>
This text font color is #EDB6EC.
.myBgColor { background-color: #EDB6EC; }
<div style="background-color:#EDB6EC">Inner text</div>
This div background color is #EDB6EC.
.myBorderColor { border: 1px solid #EDB6EC; }
<div style="border:3px solid #EDB6EC">Div</div>
This div border color is #EDB6EC.
.myOpacity80 { color: #EDB6EC; opacity: 0.8; }
<p style="color:#EDB6EC;opacity:0.8;">80%</p>
Text with #EDB6EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDB6EC;}
<p style="text-shadow: 3px 3px 1px #EDB6EC">Text here.</p>
This text has shadow with #EDB6EC color.
.textShadow {text-shadow: 3px 3px 1px #EDB6EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDB6EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDB6EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDB6EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDB6EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDB6EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDB6EC; -webkit-box-shadow: 1px 1px 3px 2px #EDB6EC; box-shadow: 1px 1px 3px 2px #EDB6EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDB6EC; -webkit-box-shadow: 1px 1px 3px 2px #EDB6EC; box-shadow:1px 1px 3px 2px #EDB6EC;">
Div content here</div>
This text has color #EDB6EC on black background.
This text has color #EDB6EC on white background.
This text has black color on #EDB6EC background.
This text has white color on #EDB6EC background.