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