HEX: #FCE6EC
RGB: (252,230,236)
#FCE6EC contains red, green and blue colors in about the same proportion. #FCE6EC ‘ nin web güvenlik rengi #FFCCFF (ya da #FCF) dir.
#FCE6EC color RGB value is (252,230,236).
RGB: (252,230,236) (99%,90%,93%)
R 252 of 255 = 99%
G 230 of 255 = 90%
B 236 of 255 = 93%
R + G + B ~ 94%. #FCE6EC is light color.
R + G + B =
252 + 230 + 236 = 718 (100%)
R 252 of 718 ~ 35.1%
G 230 of 718 ~ 32.03%
B 236 of 718 ~ 32.87%
#FCE6EC rengi CMYK tonu (0,9,6,1).
CMYK: (0,9,6,1) C0M9Y6K1 (0%,9%,6%,1%) (0.00/0.09/0.06/0.01)
FC | E6 | EC | |
---|---|---|---|
RGB | 252 | 230 | 236 |
HSL | 344° | 78.57% | 94.51% |
HSB/HSV | 344° | 8.73% | 98.82% |
CMYK | 0.00% | 8.73% | 6.35% |
1.18% |
HEX | FC | E6 | EC |
Decimal | 252 | 230 | 236 |
Binary | 11111100 | 11100110 | 11101100 |
Octal | 374 | 346 | 354 |
Examples of css and html codes for elements with #FCE6EC color. Also use rgb(252,230,236) instead hex code.
.myTextColor { color: #FCE6EC; }
<p style="color:#FCE6EC">This sample text font color is #FCE6EC.</p>
This text font color is #FCE6EC.
.myBgColor { background-color: #FCE6EC; }
<div style="background-color:#FCE6EC">Inner text</div>
This div background color is #FCE6EC.
.myBorderColor { border: 1px solid #FCE6EC; }
<div style="border:3px solid #FCE6EC">Div</div>
This div border color is #FCE6EC.
.myOpacity80 { color: #FCE6EC; opacity: 0.8; }
<p style="color:#FCE6EC;opacity:0.8;">80%</p>
Text with #FCE6EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCE6EC;}
<p style="text-shadow: 3px 3px 1px #FCE6EC">Text here.</p>
This text has shadow with #FCE6EC color.
.textShadow {text-shadow: 3px 3px 1px #FCE6EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCE6EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCE6EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCE6EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCE6EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCE6EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCE6EC; -webkit-box-shadow: 1px 1px 3px 2px #FCE6EC; box-shadow: 1px 1px 3px 2px #FCE6EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCE6EC; -webkit-box-shadow: 1px 1px 3px 2px #FCE6EC; box-shadow:1px 1px 3px 2px #FCE6EC;">
Div content here</div>
This text has color #FCE6EC on black background.
This text has color #FCE6EC on white background.
This text has black color on #FCE6EC background.
This text has white color on #FCE6EC background.