HEX: #C78C7A
RGB: (199,140,122)
#C78C7A contains mainly red and green colors. Web safe color of #C78C7A is #CC9966 (or #C96).
#C78C7A color RGB value is (199,140,122).
RGB: (199,140,122) (78%,55%,48%)
R 199 of 255 = 78%
G 140 of 255 = 55%
B 122 of 255 = 48%
R + G + B ~ 60%. #C78C7A is middle color (not dark and not light).
R + G + B =
199 + 140 + 122 = 461 (100%)
R 199 of 461 ~ 43.17%
G 140 of 461 ~ 30.37%
B 122 of 461 ~ 26.46%
#C78C7A color CMYK value is (0,30,39,22).
CMYK: (0,30,39,22) C0M30Y39K22 (0%,30%,39%,22%) (0.00/0.30/0.39/0.22)
C7 | 8C | 7A | |
---|---|---|---|
RGB | 199 | 140 | 122 |
HSL | 14° | 40.74% | 62.94% |
HSB/HSV | 14° | 38.69% | 78.04% |
CMYK | 0.00% | 29.65% | 38.69% |
21.96% |
HEX | C7 | 8C | 7A |
Decimal | 199 | 140 | 122 |
Binary | 11000111 | 10001100 | 1111010 |
Octal | 307 | 214 | 172 |
Examples of css and html codes for elements with #C78C7A color. Also use rgb(199,140,122) instead hex code.
.myTextColor { color: #C78C7A; }
<p style="color:#C78C7A">This sample text font color is #C78C7A.</p>
This text font color is #C78C7A.
.myBgColor { background-color: #C78C7A; }
<div style="background-color:#C78C7A">Inner text</div>
This div background color is #C78C7A.
.myBorderColor { border: 1px solid #C78C7A; }
<div style="border:3px solid #C78C7A">Div</div>
This div border color is #C78C7A.
.myOpacity80 { color: #C78C7A; opacity: 0.8; }
<p style="color:#C78C7A;opacity:0.8;">80%</p>
Text with #C78C7A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C78C7A;}
<p style="text-shadow: 3px 3px 1px #C78C7A">Text here.</p>
This text has shadow with #C78C7A color.
.textShadow {text-shadow: 3px 3px 1px #C78C7A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C78C7A, 5px 5px 20px red">Text here.</p>
This text has shadow with #C78C7A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C78C7A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C78C7A, Direction=45, Strength=4)">Text</p>
This text has shadow with #C78C7A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C78C7A; -webkit-box-shadow: 1px 1px 3px 2px #C78C7A; box-shadow: 1px 1px 3px 2px #C78C7A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C78C7A; -webkit-box-shadow: 1px 1px 3px 2px #C78C7A; box-shadow:1px 1px 3px 2px #C78C7A;">
Div content here</div>
This text has color #C78C7A on black background.
This text has color #C78C7A on white background.
This text has black color on #C78C7A background.
This text has white color on #C78C7A background.