HEX: #FFCCB4
RGB: (255,204,180)
#FFCCB4 contains mainly red and green colors. Web safe color of #FFCCB4 is #FFCCCC (or #FCC).
#FFCCB4 color RGB value is (255,204,180).
RGB: (255,204,180) (100%,80%,71%)
R 255 of 255 = 100%
G 204 of 255 = 80%
B 180 of 255 = 71%
R + G + B ~ 84%. #FFCCB4 is quite light color.
R + G + B =
255 + 204 + 180 = 639 (100%)
R 255 of 639 ~ 39.91%
G 204 of 639 ~ 31.92%
B 180 of 639 ~ 28.17%
#FFCCB4 color CMYK value is (0,20,29,0).
CMYK: (0,20,29,0) C0M20Y29K0 (0%,20%,29%,0%) (0.00/0.20/0.29/0.00)
FF | CC | B4 | |
---|---|---|---|
RGB | 255 | 204 | 180 |
HSL | 19° | 100.00% | 85.29% |
HSB/HSV | 19° | 29.41% | 100.00% |
CMYK | 0.00% | 20.00% | 29.41% |
0.00% |
HEX | FF | CC | B4 |
Decimal | 255 | 204 | 180 |
Binary | 11111111 | 11001100 | 10110100 |
Octal | 377 | 314 | 264 |
Examples of css and html codes for elements with #FFCCB4 color. Also use rgb(255,204,180) instead hex code.
.myTextColor { color: #FFCCB4; }
<p style="color:#FFCCB4">This sample text font color is #FFCCB4.</p>
This text font color is #FFCCB4.
.myBgColor { background-color: #FFCCB4; }
<div style="background-color:#FFCCB4">Inner text</div>
This div background color is #FFCCB4.
.myBorderColor { border: 1px solid #FFCCB4; }
<div style="border:3px solid #FFCCB4">Div</div>
This div border color is #FFCCB4.
.myOpacity80 { color: #FFCCB4; opacity: 0.8; }
<p style="color:#FFCCB4;opacity:0.8;">80%</p>
Text with #FFCCB4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFCCB4;}
<p style="text-shadow: 3px 3px 1px #FFCCB4">Text here.</p>
This text has shadow with #FFCCB4 color.
.textShadow {text-shadow: 3px 3px 1px #FFCCB4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFCCB4, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFCCB4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFCCB4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFCCB4, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFCCB4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFCCB4; -webkit-box-shadow: 1px 1px 3px 2px #FFCCB4; box-shadow: 1px 1px 3px 2px #FFCCB4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFCCB4; -webkit-box-shadow: 1px 1px 3px 2px #FFCCB4; box-shadow:1px 1px 3px 2px #FFCCB4;">
Div content here</div>
This text has color #FFCCB4 on black background.
This text has color #FFCCB4 on white background.
This text has black color on #FFCCB4 background.
This text has white color on #FFCCB4 background.