HEX: #FFCEDD
RGB: (255,206,221)
#FFCEDD contains red, green and blue colors in about the same proportion. Web safe color of #FFCEDD is #FFCCCC (or #FCC).
#FFCEDD color RGB value is (255,206,221).
RGB: (255,206,221) (100%,81%,87%)
R 255 of 255 = 100%
G 206 of 255 = 81%
B 221 of 255 = 87%
R + G + B ~ 89%. #FFCEDD is light color.
R + G + B =
255 + 206 + 221 = 682 (100%)
R 255 of 682 ~ 37.39%
G 206 of 682 ~ 30.21%
B 221 of 682 ~ 32.4%
#FFCEDD color CMYK value is (0,19,13,0).
CMYK: (0,19,13,0) C0M19Y13K0 (0%,19%,13%,0%) (0.00/0.19/0.13/0.00)
FF | CE | DD | |
---|---|---|---|
RGB | 255 | 206 | 221 |
HSL | 342° | 100.00% | 90.39% |
HSB/HSV | 342° | 19.22% | 100.00% |
CMYK | 0.00% | 19.22% | 13.33% |
0.00% |
HEX | FF | CE | DD |
Decimal | 255 | 206 | 221 |
Binary | 11111111 | 11001110 | 11011101 |
Octal | 377 | 316 | 335 |
Examples of css and html codes for elements with #FFCEDD color. Also use rgb(255,206,221) instead hex code.
.myTextColor { color: #FFCEDD; }
<p style="color:#FFCEDD">This sample text font color is #FFCEDD.</p>
This text font color is #FFCEDD.
.myBgColor { background-color: #FFCEDD; }
<div style="background-color:#FFCEDD">Inner text</div>
This div background color is #FFCEDD.
.myBorderColor { border: 1px solid #FFCEDD; }
<div style="border:3px solid #FFCEDD">Div</div>
This div border color is #FFCEDD.
.myOpacity80 { color: #FFCEDD; opacity: 0.8; }
<p style="color:#FFCEDD;opacity:0.8;">80%</p>
Text with #FFCEDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFCEDD;}
<p style="text-shadow: 3px 3px 1px #FFCEDD">Text here.</p>
This text has shadow with #FFCEDD color.
.textShadow {text-shadow: 3px 3px 1px #FFCEDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFCEDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFCEDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFCEDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFCEDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFCEDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFCEDD; -webkit-box-shadow: 1px 1px 3px 2px #FFCEDD; box-shadow: 1px 1px 3px 2px #FFCEDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFCEDD; -webkit-box-shadow: 1px 1px 3px 2px #FFCEDD; box-shadow:1px 1px 3px 2px #FFCEDD;">
Div content here</div>
This text has color #FFCEDD on black background.
This text has color #FFCEDD on white background.
This text has black color on #FFCEDD background.
This text has white color on #FFCEDD background.