HEX: #FFD3CB
RGB: (255,211,203)
#FFD3CB contains red, green and blue colors in about the same proportion. Web safe color of #FFD3CB is #FFCCCC (or #FCC).
#FFD3CB color RGB value is (255,211,203).
RGB: (255,211,203) (100%,83%,80%)
R 255 of 255 = 100%
G 211 of 255 = 83%
B 203 of 255 = 80%
R + G + B ~ 88%. #FFD3CB is light color.
R + G + B =
255 + 211 + 203 = 669 (100%)
R 255 of 669 ~ 38.12%
G 211 of 669 ~ 31.54%
B 203 of 669 ~ 30.34%
#FFD3CB color CMYK value is (0,17,20,0).
CMYK: (0,17,20,0) C0M17Y20K0 (0%,17%,20%,0%) (0.00/0.17/0.20/0.00)
FF | D3 | CB | |
---|---|---|---|
RGB | 255 | 211 | 203 |
HSL | 9° | 100.00% | 89.80% |
HSB/HSV | 9° | 20.39% | 100.00% |
CMYK | 0.00% | 17.25% | 20.39% |
0.00% |
HEX | FF | D3 | CB |
Decimal | 255 | 211 | 203 |
Binary | 11111111 | 11010011 | 11001011 |
Octal | 377 | 323 | 313 |
Examples of css and html codes for elements with #FFD3CB color. Also use rgb(255,211,203) instead hex code.
.myTextColor { color: #FFD3CB; }
<p style="color:#FFD3CB">This sample text font color is #FFD3CB.</p>
This text font color is #FFD3CB.
.myBgColor { background-color: #FFD3CB; }
<div style="background-color:#FFD3CB">Inner text</div>
This div background color is #FFD3CB.
.myBorderColor { border: 1px solid #FFD3CB; }
<div style="border:3px solid #FFD3CB">Div</div>
This div border color is #FFD3CB.
.myOpacity80 { color: #FFD3CB; opacity: 0.8; }
<p style="color:#FFD3CB;opacity:0.8;">80%</p>
Text with #FFD3CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFD3CB;}
<p style="text-shadow: 3px 3px 1px #FFD3CB">Text here.</p>
This text has shadow with #FFD3CB color.
.textShadow {text-shadow: 3px 3px 1px #FFD3CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFD3CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFD3CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFD3CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFD3CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFD3CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFD3CB; -webkit-box-shadow: 1px 1px 3px 2px #FFD3CB; box-shadow: 1px 1px 3px 2px #FFD3CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFD3CB; -webkit-box-shadow: 1px 1px 3px 2px #FFD3CB; box-shadow:1px 1px 3px 2px #FFD3CB;">
Div content here</div>
This text has color #FFD3CB on black background.
This text has color #FFD3CB on white background.
This text has black color on #FFD3CB background.
This text has white color on #FFD3CB background.