HEX: #FFCF70
RGB: (255,207,112)
#FFCF70 contains mainly red and green colors. Web safe color of #FFCF70 is #FFCC66 (or #FC6).
#FFCF70 color RGB value is (255,207,112).
RGB: (255,207,112) (100%,81%,44%)
R 255 of 255 = 100%
G 207 of 255 = 81%
B 112 of 255 = 44%
R + G + B ~ 75%. #FFCF70 is quite light color.
R + G + B =
255 + 207 + 112 = 574 (100%)
R 255 of 574 ~ 44.43%
G 207 of 574 ~ 36.06%
B 112 of 574 ~ 19.51%
#FFCF70 color CMYK value is (0,19,56,0).
CMYK: (0,19,56,0) C0M19Y56K0 (0%,19%,56%,0%) (0.00/0.19/0.56/0.00)
FF | CF | 70 | |
---|---|---|---|
RGB | 255 | 207 | 112 |
HSL | 40° | 100.00% | 71.96% |
HSB/HSV | 40° | 56.08% | 100.00% |
CMYK | 0.00% | 18.82% | 56.08% |
0.00% |
HEX | FF | CF | 70 |
Decimal | 255 | 207 | 112 |
Binary | 11111111 | 11001111 | 1110000 |
Octal | 377 | 317 | 160 |
Examples of css and html codes for elements with #FFCF70 color. Also use rgb(255,207,112) instead hex code.
.myTextColor { color: #FFCF70; }
<p style="color:#FFCF70">This sample text font color is #FFCF70.</p>
This text font color is #FFCF70.
.myBgColor { background-color: #FFCF70; }
<div style="background-color:#FFCF70">Inner text</div>
This div background color is #FFCF70.
.myBorderColor { border: 1px solid #FFCF70; }
<div style="border:3px solid #FFCF70">Div</div>
This div border color is #FFCF70.
.myOpacity80 { color: #FFCF70; opacity: 0.8; }
<p style="color:#FFCF70;opacity:0.8;">80%</p>
Text with #FFCF70 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFCF70;}
<p style="text-shadow: 3px 3px 1px #FFCF70">Text here.</p>
This text has shadow with #FFCF70 color.
.textShadow {text-shadow: 3px 3px 1px #FFCF70, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFCF70, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFCF70 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFCF70, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFCF70, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFCF70 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFCF70; -webkit-box-shadow: 1px 1px 3px 2px #FFCF70; box-shadow: 1px 1px 3px 2px #FFCF70; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFCF70; -webkit-box-shadow: 1px 1px 3px 2px #FFCF70; box-shadow:1px 1px 3px 2px #FFCF70;">
Div content here</div>
This text has color #FFCF70 on black background.
This text has color #FFCF70 on white background.
This text has black color on #FFCF70 background.
This text has white color on #FFCF70 background.