HEX: #FFC887
RGB: (255,200,135)
#FFC887 contains mainly red and green colors. Web safe color of #FFC887 is #FFCC99 (or #FC9).
#FFC887 color RGB value is (255,200,135).
RGB: (255,200,135) (100%,78%,53%)
R 255 of 255 = 100%
G 200 of 255 = 78%
B 135 of 255 = 53%
R + G + B ~ 77%. #FFC887 is quite light color.
R + G + B =
255 + 200 + 135 = 590 (100%)
R 255 of 590 ~ 43.22%
G 200 of 590 ~ 33.9%
B 135 of 590 ~ 22.88%
#FFC887 color CMYK value is (0,22,47,0).
CMYK: (0,22,47,0) C0M22Y47K0 (0%,22%,47%,0%) (0.00/0.22/0.47/0.00)
FF | C8 | 87 | |
---|---|---|---|
RGB | 255 | 200 | 135 |
HSL | 33° | 100.00% | 76.47% |
HSB/HSV | 33° | 47.06% | 100.00% |
CMYK | 0.00% | 21.57% | 47.06% |
0.00% |
HEX | FF | C8 | 87 |
Decimal | 255 | 200 | 135 |
Binary | 11111111 | 11001000 | 10000111 |
Octal | 377 | 310 | 207 |
Examples of css and html codes for elements with #FFC887 color. Also use rgb(255,200,135) instead hex code.
.myTextColor { color: #FFC887; }
<p style="color:#FFC887">This sample text font color is #FFC887.</p>
This text font color is #FFC887.
.myBgColor { background-color: #FFC887; }
<div style="background-color:#FFC887">Inner text</div>
This div background color is #FFC887.
.myBorderColor { border: 1px solid #FFC887; }
<div style="border:3px solid #FFC887">Div</div>
This div border color is #FFC887.
.myOpacity80 { color: #FFC887; opacity: 0.8; }
<p style="color:#FFC887;opacity:0.8;">80%</p>
Text with #FFC887 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFC887;}
<p style="text-shadow: 3px 3px 1px #FFC887">Text here.</p>
This text has shadow with #FFC887 color.
.textShadow {text-shadow: 3px 3px 1px #FFC887, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFC887, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFC887 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFC887, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFC887, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFC887 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFC887; -webkit-box-shadow: 1px 1px 3px 2px #FFC887; box-shadow: 1px 1px 3px 2px #FFC887; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFC887; -webkit-box-shadow: 1px 1px 3px 2px #FFC887; box-shadow:1px 1px 3px 2px #FFC887;">
Div content here</div>
This text has color #FFC887 on black background.
This text has color #FFC887 on white background.
This text has black color on #FFC887 background.
This text has white color on #FFC887 background.