HEX: #C77B48
RGB: (199,123,72)
#C77B48 contains mainly red color. Web safe color of #C77B48 is #CC6633 (or #C63).
#C77B48 color RGB value is (199,123,72).
RGB: (199,123,72) (78%,48%,28%)
R 199 of 255 = 78%
G 123 of 255 = 48%
B 72 of 255 = 28%
R + G + B ~ 51%. #C77B48 is middle color (not dark and not light).
R + G + B =
199 + 123 + 72 = 394 (100%)
R 199 of 394 ~ 50.51%
G 123 of 394 ~ 31.22%
B 72 of 394 ~ 18.27%
#C77B48 color CMYK value is (0,38,64,22).
CMYK: (0,38,64,22) C0M38Y64K22 (0%,38%,64%,22%) (0.00/0.38/0.64/0.22)
C7 | 7B | 48 | |
---|---|---|---|
RGB | 199 | 123 | 72 |
HSL | 24° | 53.14% | 53.14% |
HSB/HSV | 24° | 63.82% | 78.04% |
CMYK | 0.00% | 38.19% | 63.82% |
21.96% |
HEX | C7 | 7B | 48 |
Decimal | 199 | 123 | 72 |
Binary | 11000111 | 1111011 | 1001000 |
Octal | 307 | 173 | 110 |
Examples of css and html codes for elements with #C77B48 color. Also use rgb(199,123,72) instead hex code.
.myTextColor { color: #C77B48; }
<p style="color:#C77B48">This sample text font color is #C77B48.</p>
This text font color is #C77B48.
.myBgColor { background-color: #C77B48; }
<div style="background-color:#C77B48">Inner text</div>
This div background color is #C77B48.
.myBorderColor { border: 1px solid #C77B48; }
<div style="border:3px solid #C77B48">Div</div>
This div border color is #C77B48.
.myOpacity80 { color: #C77B48; opacity: 0.8; }
<p style="color:#C77B48;opacity:0.8;">80%</p>
Text with #C77B48 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C77B48;}
<p style="text-shadow: 3px 3px 1px #C77B48">Text here.</p>
This text has shadow with #C77B48 color.
.textShadow {text-shadow: 3px 3px 1px #C77B48, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C77B48, 5px 5px 20px red">Text here.</p>
This text has shadow with #C77B48 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C77B48, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C77B48, Direction=45, Strength=4)">Text</p>
This text has shadow with #C77B48 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C77B48; -webkit-box-shadow: 1px 1px 3px 2px #C77B48; box-shadow: 1px 1px 3px 2px #C77B48; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C77B48; -webkit-box-shadow: 1px 1px 3px 2px #C77B48; box-shadow:1px 1px 3px 2px #C77B48;">
Div content here</div>
This text has color #C77B48 on black background.
This text has color #C77B48 on white background.
This text has black color on #C77B48 background.
This text has white color on #C77B48 background.