HEX: #FFC550
RGB: (255,197,80)
#FFC550 contains mainly red and green colors. Web safe color of #FFC550 is #FFCC66 (or #FC6).
#FFC550 color RGB value is (255,197,80).
RGB: (255,197,80) (100%,77%,31%)
R 255 of 255 = 100%
G 197 of 255 = 77%
B 80 of 255 = 31%
R + G + B ~ 69%. #FFC550 is quite light color.
R + G + B =
255 + 197 + 80 = 532 (100%)
R 255 of 532 ~ 47.93%
G 197 of 532 ~ 37.03%
B 80 of 532 ~ 15.04%
#FFC550 color CMYK value is (0,23,69,0).
CMYK: (0,23,69,0) C0M23Y69K0 (0%,23%,69%,0%) (0.00/0.23/0.69/0.00)
FF | C5 | 50 | |
---|---|---|---|
RGB | 255 | 197 | 80 |
HSL | 40° | 100.00% | 65.69% |
HSB/HSV | 40° | 68.63% | 100.00% |
CMYK | 0.00% | 22.75% | 68.63% |
0.00% |
HEX | FF | C5 | 50 |
Decimal | 255 | 197 | 80 |
Binary | 11111111 | 11000101 | 1010000 |
Octal | 377 | 305 | 120 |
Examples of css and html codes for elements with #FFC550 color. Also use rgb(255,197,80) instead hex code.
.myTextColor { color: #FFC550; }
<p style="color:#FFC550">This sample text font color is #FFC550.</p>
This text font color is #FFC550.
.myBgColor { background-color: #FFC550; }
<div style="background-color:#FFC550">Inner text</div>
This div background color is #FFC550.
.myBorderColor { border: 1px solid #FFC550; }
<div style="border:3px solid #FFC550">Div</div>
This div border color is #FFC550.
.myOpacity80 { color: #FFC550; opacity: 0.8; }
<p style="color:#FFC550;opacity:0.8;">80%</p>
Text with #FFC550 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFC550;}
<p style="text-shadow: 3px 3px 1px #FFC550">Text here.</p>
This text has shadow with #FFC550 color.
.textShadow {text-shadow: 3px 3px 1px #FFC550, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFC550, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFC550 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFC550, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFC550, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFC550 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFC550; -webkit-box-shadow: 1px 1px 3px 2px #FFC550; box-shadow: 1px 1px 3px 2px #FFC550; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFC550; -webkit-box-shadow: 1px 1px 3px 2px #FFC550; box-shadow:1px 1px 3px 2px #FFC550;">
Div content here</div>
This text has color #FFC550 on black background.
This text has color #FFC550 on white background.
This text has black color on #FFC550 background.
This text has white color on #FFC550 background.