HEX: #EDD5FC
RGB: (237,213,252)
#EDD5FC contains red, green and blue colors in about the same proportion. #EDD5FC ‘ nin web güvenlik rengi #FFCCFF (ya da #FCF) dir.
#EDD5FC color RGB value is (237,213,252).
RGB: (237,213,252) (93%,84%,99%)
R 237 of 255 = 93%
G 213 of 255 = 84%
B 252 of 255 = 99%
R + G + B ~ 92%. #EDD5FC is light color.
R + G + B =
237 + 213 + 252 = 702 (100%)
R 237 of 702 ~ 33.76%
G 213 of 702 ~ 30.34%
B 252 of 702 ~ 35.9%
#EDD5FC rengi CMYK tonu (6,15,0,1).
CMYK: (6,15,0,1) C6M15Y0K1 (6%,15%,0%,1%) (0.06/0.15/0.00/0.01)
ED | D5 | FC | |
---|---|---|---|
RGB | 237 | 213 | 252 |
HSL | 277° | 86.67% | 91.18% |
HSB/HSV | 277° | 15.48% | 98.82% |
CMYK | 5.95% | 15.48% | 0.00% |
1.18% |
HEX | ED | D5 | FC |
Decimal | 237 | 213 | 252 |
Binary | 11101101 | 11010101 | 11111100 |
Octal | 355 | 325 | 374 |
Examples of css and html codes for elements with #EDD5FC color. Also use rgb(237,213,252) instead hex code.
.myTextColor { color: #EDD5FC; }
<p style="color:#EDD5FC">This sample text font color is #EDD5FC.</p>
This text font color is #EDD5FC.
.myBgColor { background-color: #EDD5FC; }
<div style="background-color:#EDD5FC">Inner text</div>
This div background color is #EDD5FC.
.myBorderColor { border: 1px solid #EDD5FC; }
<div style="border:3px solid #EDD5FC">Div</div>
This div border color is #EDD5FC.
.myOpacity80 { color: #EDD5FC; opacity: 0.8; }
<p style="color:#EDD5FC;opacity:0.8;">80%</p>
Text with #EDD5FC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDD5FC;}
<p style="text-shadow: 3px 3px 1px #EDD5FC">Text here.</p>
This text has shadow with #EDD5FC color.
.textShadow {text-shadow: 3px 3px 1px #EDD5FC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDD5FC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDD5FC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDD5FC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDD5FC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDD5FC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDD5FC; -webkit-box-shadow: 1px 1px 3px 2px #EDD5FC; box-shadow: 1px 1px 3px 2px #EDD5FC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDD5FC; -webkit-box-shadow: 1px 1px 3px 2px #EDD5FC; box-shadow:1px 1px 3px 2px #EDD5FC;">
Div content here</div>
This text has color #EDD5FC on black background.
This text has color #EDD5FC on white background.
This text has black color on #EDD5FC background.
This text has white color on #EDD5FC background.