HEX: #C5B185
RGB: (197,177,133)
#C5B185 contains mainly red and green colors. Web safe color of #C5B185 is #CC9999 (or #C99).
#C5B185 color RGB value is (197,177,133).
RGB: (197,177,133) (77%,69%,52%)
R 197 of 255 = 77%
G 177 of 255 = 69%
B 133 of 255 = 52%
R + G + B ~ 66%. #C5B185 is quite light color.
R + G + B =
197 + 177 + 133 = 507 (100%)
R 197 of 507 ~ 38.86%
G 177 of 507 ~ 34.91%
B 133 of 507 ~ 26.23%
#C5B185 color CMYK value is (0,10,32,23).
CMYK: (0,10,32,23) C0M10Y32K23 (0%,10%,32%,23%) (0.00/0.10/0.32/0.23)
C5 | B1 | 85 | |
---|---|---|---|
RGB | 197 | 177 | 133 |
HSL | 41° | 35.56% | 64.71% |
HSB/HSV | 41° | 32.49% | 77.25% |
CMYK | 0.00% | 10.15% | 32.49% |
22.75% |
HEX | C5 | B1 | 85 |
Decimal | 197 | 177 | 133 |
Binary | 11000101 | 10110001 | 10000101 |
Octal | 305 | 261 | 205 |
Examples of css and html codes for elements with #C5B185 color. Also use rgb(197,177,133) instead hex code.
.myTextColor { color: #C5B185; }
<p style="color:#C5B185">This sample text font color is #C5B185.</p>
This text font color is #C5B185.
.myBgColor { background-color: #C5B185; }
<div style="background-color:#C5B185">Inner text</div>
This div background color is #C5B185.
.myBorderColor { border: 1px solid #C5B185; }
<div style="border:3px solid #C5B185">Div</div>
This div border color is #C5B185.
.myOpacity80 { color: #C5B185; opacity: 0.8; }
<p style="color:#C5B185;opacity:0.8;">80%</p>
Text with #C5B185 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5B185;}
<p style="text-shadow: 3px 3px 1px #C5B185">Text here.</p>
This text has shadow with #C5B185 color.
.textShadow {text-shadow: 3px 3px 1px #C5B185, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5B185, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5B185 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5B185, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5B185, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5B185 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5B185; -webkit-box-shadow: 1px 1px 3px 2px #C5B185; box-shadow: 1px 1px 3px 2px #C5B185; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5B185; -webkit-box-shadow: 1px 1px 3px 2px #C5B185; box-shadow:1px 1px 3px 2px #C5B185;">
Div content here</div>
This text has color #C5B185 on black background.
This text has color #C5B185 on white background.
This text has black color on #C5B185 background.
This text has white color on #C5B185 background.