HEX: #C7886B
RGB: (199,136,107)
#C7886B contains mainly red color. Web safe color of #C7886B is #CC9966 (or #C96).
#C7886B color RGB value is (199,136,107).
RGB: (199,136,107) (78%,53%,42%)
R 199 of 255 = 78%
G 136 of 255 = 53%
B 107 of 255 = 42%
R + G + B ~ 58%. #C7886B is middle color (not dark and not light).
R + G + B =
199 + 136 + 107 = 442 (100%)
R 199 of 442 ~ 45.02%
G 136 of 442 ~ 30.77%
B 107 of 442 ~ 24.21%
#C7886B color CMYK value is (0,32,46,22).
CMYK: (0,32,46,22) C0M32Y46K22 (0%,32%,46%,22%) (0.00/0.32/0.46/0.22)
C7 | 88 | 6B | |
---|---|---|---|
RGB | 199 | 136 | 107 |
HSL | 19° | 45.10% | 60.00% |
HSB/HSV | 19° | 46.23% | 78.04% |
CMYK | 0.00% | 31.66% | 46.23% |
21.96% |
HEX | C7 | 88 | 6B |
Decimal | 199 | 136 | 107 |
Binary | 11000111 | 10001000 | 1101011 |
Octal | 307 | 210 | 153 |
Examples of css and html codes for elements with #C7886B color. Also use rgb(199,136,107) instead hex code.
.myTextColor { color: #C7886B; }
<p style="color:#C7886B">This sample text font color is #C7886B.</p>
This text font color is #C7886B.
.myBgColor { background-color: #C7886B; }
<div style="background-color:#C7886B">Inner text</div>
This div background color is #C7886B.
.myBorderColor { border: 1px solid #C7886B; }
<div style="border:3px solid #C7886B">Div</div>
This div border color is #C7886B.
.myOpacity80 { color: #C7886B; opacity: 0.8; }
<p style="color:#C7886B;opacity:0.8;">80%</p>
Text with #C7886B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7886B;}
<p style="text-shadow: 3px 3px 1px #C7886B">Text here.</p>
This text has shadow with #C7886B color.
.textShadow {text-shadow: 3px 3px 1px #C7886B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7886B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7886B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7886B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7886B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7886B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7886B; -webkit-box-shadow: 1px 1px 3px 2px #C7886B; box-shadow: 1px 1px 3px 2px #C7886B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7886B; -webkit-box-shadow: 1px 1px 3px 2px #C7886B; box-shadow:1px 1px 3px 2px #C7886B;">
Div content here</div>
This text has color #C7886B on black background.
This text has color #C7886B on white background.
This text has black color on #C7886B background.
This text has white color on #C7886B background.