HEX: #EFD3DB
RGB: (239,211,219)
#EFD3DB contains red, green and blue colors in about the same proportion. #EFD3DB ‘ nin web güvenlik rengi #FFCCCC (ya da #FCC) dir.
#EFD3DB color RGB value is (239,211,219).
RGB: (239,211,219) (94%,83%,86%)
R 239 of 255 = 94%
G 211 of 255 = 83%
B 219 of 255 = 86%
R + G + B ~ 88%. #EFD3DB is light color.
R + G + B =
239 + 211 + 219 = 669 (100%)
R 239 of 669 ~ 35.72%
G 211 of 669 ~ 31.54%
B 219 of 669 ~ 32.74%
#EFD3DB rengi CMYK tonu (0,12,8,6).
CMYK: (0,12,8,6) C0M12Y8K6 (0%,12%,8%,6%) (0.00/0.12/0.08/0.06)
EF | D3 | DB | |
---|---|---|---|
RGB | 239 | 211 | 219 |
HSL | 343° | 46.67% | 88.24% |
HSB/HSV | 343° | 11.72% | 93.73% |
CMYK | 0.00% | 11.72% | 8.37% |
6.27% |
HEX | EF | D3 | DB |
Decimal | 239 | 211 | 219 |
Binary | 11101111 | 11010011 | 11011011 |
Octal | 357 | 323 | 333 |
Examples of css and html codes for elements with #EFD3DB color. Also use rgb(239,211,219) instead hex code.
.myTextColor { color: #EFD3DB; }
<p style="color:#EFD3DB">This sample text font color is #EFD3DB.</p>
This text font color is #EFD3DB.
.myBgColor { background-color: #EFD3DB; }
<div style="background-color:#EFD3DB">Inner text</div>
This div background color is #EFD3DB.
.myBorderColor { border: 1px solid #EFD3DB; }
<div style="border:3px solid #EFD3DB">Div</div>
This div border color is #EFD3DB.
.myOpacity80 { color: #EFD3DB; opacity: 0.8; }
<p style="color:#EFD3DB;opacity:0.8;">80%</p>
Text with #EFD3DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFD3DB;}
<p style="text-shadow: 3px 3px 1px #EFD3DB">Text here.</p>
This text has shadow with #EFD3DB color.
.textShadow {text-shadow: 3px 3px 1px #EFD3DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFD3DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFD3DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFD3DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFD3DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFD3DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFD3DB; -webkit-box-shadow: 1px 1px 3px 2px #EFD3DB; box-shadow: 1px 1px 3px 2px #EFD3DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFD3DB; -webkit-box-shadow: 1px 1px 3px 2px #EFD3DB; box-shadow:1px 1px 3px 2px #EFD3DB;">
Div content here</div>
This text has color #EFD3DB on black background.
This text has color #EFD3DB on white background.
This text has black color on #EFD3DB background.
This text has white color on #EFD3DB background.