HEX: #FFECC3
RGB: (255,236,195)
#FFECC3 contains mainly red and green colors. Web safe color of #FFECC3 is #FFFFCC (or #FFC).
#FFECC3 color RGB value is (255,236,195).
RGB: (255,236,195) (100%,93%,76%)
R 255 of 255 = 100%
G 236 of 255 = 93%
B 195 of 255 = 76%
R + G + B ~ 90%. #FFECC3 is light color.
R + G + B =
255 + 236 + 195 = 686 (100%)
R 255 of 686 ~ 37.17%
G 236 of 686 ~ 34.4%
B 195 of 686 ~ 28.43%
#FFECC3 color CMYK value is (0,7,24,0).
CMYK: (0,7,24,0) C0M7Y24K0 (0%,7%,24%,0%) (0.00/0.07/0.24/0.00)
FF | EC | C3 | |
---|---|---|---|
RGB | 255 | 236 | 195 |
HSL | 41° | 100.00% | 88.24% |
HSB/HSV | 41° | 23.53% | 100.00% |
CMYK | 0.00% | 7.45% | 23.53% |
0.00% |
HEX | FF | EC | C3 |
Decimal | 255 | 236 | 195 |
Binary | 11111111 | 11101100 | 11000011 |
Octal | 377 | 354 | 303 |
Examples of css and html codes for elements with #FFECC3 color. Also use rgb(255,236,195) instead hex code.
.myTextColor { color: #FFECC3; }
<p style="color:#FFECC3">This sample text font color is #FFECC3.</p>
This text font color is #FFECC3.
.myBgColor { background-color: #FFECC3; }
<div style="background-color:#FFECC3">Inner text</div>
This div background color is #FFECC3.
.myBorderColor { border: 1px solid #FFECC3; }
<div style="border:3px solid #FFECC3">Div</div>
This div border color is #FFECC3.
.myOpacity80 { color: #FFECC3; opacity: 0.8; }
<p style="color:#FFECC3;opacity:0.8;">80%</p>
Text with #FFECC3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFECC3;}
<p style="text-shadow: 3px 3px 1px #FFECC3">Text here.</p>
This text has shadow with #FFECC3 color.
.textShadow {text-shadow: 3px 3px 1px #FFECC3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFECC3, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFECC3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFECC3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFECC3, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFECC3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFECC3; -webkit-box-shadow: 1px 1px 3px 2px #FFECC3; box-shadow: 1px 1px 3px 2px #FFECC3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFECC3; -webkit-box-shadow: 1px 1px 3px 2px #FFECC3; box-shadow:1px 1px 3px 2px #FFECC3;">
Div content here</div>
This text has color #FFECC3 on black background.
This text has color #FFECC3 on white background.
This text has black color on #FFECC3 background.
This text has white color on #FFECC3 background.