HEX: #EFC5DA
RGB: (239,197,218)
#EFC5DA contains red, green and blue colors in about the same proportion. #EFC5DA ‘ nin web güvenlik rengi #FFCCCC (ya da #FCC) dir.
#EFC5DA color RGB value is (239,197,218).
RGB: (239,197,218) (94%,77%,85%)
R 239 of 255 = 94%
G 197 of 255 = 77%
B 218 of 255 = 85%
R + G + B ~ 85%. #EFC5DA is quite light color.
R + G + B =
239 + 197 + 218 = 654 (100%)
R 239 of 654 ~ 36.54%
G 197 of 654 ~ 30.12%
B 218 of 654 ~ 33.33%
#EFC5DA rengi CMYK tonu (0,18,9,6).
CMYK: (0,18,9,6) C0M18Y9K6 (0%,18%,9%,6%) (0.00/0.18/0.09/0.06)
EF | C5 | DA | |
---|---|---|---|
RGB | 239 | 197 | 218 |
HSL | 330° | 56.76% | 85.49% |
HSB/HSV | 330° | 17.57% | 93.73% |
CMYK | 0.00% | 17.57% | 8.79% |
6.27% |
HEX | EF | C5 | DA |
Decimal | 239 | 197 | 218 |
Binary | 11101111 | 11000101 | 11011010 |
Octal | 357 | 305 | 332 |
Examples of css and html codes for elements with #EFC5DA color. Also use rgb(239,197,218) instead hex code.
.myTextColor { color: #EFC5DA; }
<p style="color:#EFC5DA">This sample text font color is #EFC5DA.</p>
This text font color is #EFC5DA.
.myBgColor { background-color: #EFC5DA; }
<div style="background-color:#EFC5DA">Inner text</div>
This div background color is #EFC5DA.
.myBorderColor { border: 1px solid #EFC5DA; }
<div style="border:3px solid #EFC5DA">Div</div>
This div border color is #EFC5DA.
.myOpacity80 { color: #EFC5DA; opacity: 0.8; }
<p style="color:#EFC5DA;opacity:0.8;">80%</p>
Text with #EFC5DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFC5DA;}
<p style="text-shadow: 3px 3px 1px #EFC5DA">Text here.</p>
This text has shadow with #EFC5DA color.
.textShadow {text-shadow: 3px 3px 1px #EFC5DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFC5DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFC5DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFC5DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFC5DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFC5DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFC5DA; -webkit-box-shadow: 1px 1px 3px 2px #EFC5DA; box-shadow: 1px 1px 3px 2px #EFC5DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFC5DA; -webkit-box-shadow: 1px 1px 3px 2px #EFC5DA; box-shadow:1px 1px 3px 2px #EFC5DA;">
Div content here</div>
This text has color #EFC5DA on black background.
This text has color #EFC5DA on white background.
This text has black color on #EFC5DA background.
This text has white color on #EFC5DA background.