HEX: #C77F2C
RGB: (199,127,44)
#C77F2C contains mainly red color. Web safe color of #C77F2C is #CC6633 (or #C63).
#C77F2C color RGB value is (199,127,44).
RGB: (199,127,44) (78%,50%,17%)
R 199 of 255 = 78%
G 127 of 255 = 50%
B 44 of 255 = 17%
R + G + B ~ 48%. #C77F2C is middle color (not dark and not light).
R + G + B =
199 + 127 + 44 = 370 (100%)
R 199 of 370 ~ 53.78%
G 127 of 370 ~ 34.32%
B 44 of 370 ~ 11.89%
#C77F2C color CMYK value is (0,36,78,22).
CMYK: (0,36,78,22) C0M36Y78K22 (0%,36%,78%,22%) (0.00/0.36/0.78/0.22)
C7 | 7F | 2C | |
---|---|---|---|
RGB | 199 | 127 | 44 |
HSL | 32° | 63.79% | 47.65% |
HSB/HSV | 32° | 77.89% | 78.04% |
CMYK | 0.00% | 36.18% | 77.89% |
21.96% |
HEX | C7 | 7F | 2C |
Decimal | 199 | 127 | 44 |
Binary | 11000111 | 1111111 | 101100 |
Octal | 307 | 177 | 54 |
Examples of css and html codes for elements with #C77F2C color. Also use rgb(199,127,44) instead hex code.
.myTextColor { color: #C77F2C; }
<p style="color:#C77F2C">This sample text font color is #C77F2C.</p>
This text font color is #C77F2C.
.myBgColor { background-color: #C77F2C; }
<div style="background-color:#C77F2C">Inner text</div>
This div background color is #C77F2C.
.myBorderColor { border: 1px solid #C77F2C; }
<div style="border:3px solid #C77F2C">Div</div>
This div border color is #C77F2C.
.myOpacity80 { color: #C77F2C; opacity: 0.8; }
<p style="color:#C77F2C;opacity:0.8;">80%</p>
Text with #C77F2C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C77F2C;}
<p style="text-shadow: 3px 3px 1px #C77F2C">Text here.</p>
This text has shadow with #C77F2C color.
.textShadow {text-shadow: 3px 3px 1px #C77F2C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C77F2C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C77F2C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C77F2C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C77F2C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C77F2C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C77F2C; -webkit-box-shadow: 1px 1px 3px 2px #C77F2C; box-shadow: 1px 1px 3px 2px #C77F2C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C77F2C; -webkit-box-shadow: 1px 1px 3px 2px #C77F2C; box-shadow:1px 1px 3px 2px #C77F2C;">
Div content here</div>
This text has color #C77F2C on black background.
This text has color #C77F2C on white background.
This text has black color on #C77F2C background.
This text has white color on #C77F2C background.