HEX: #C5B481
RGB: (197,180,129)
#C5B481 contains mainly red and green colors. Web safe color of #C5B481 is #CCCC99 (or #CC9).
#C5B481 color RGB value is (197,180,129).
RGB: (197,180,129) (77%,71%,51%)
R 197 of 255 = 77%
G 180 of 255 = 71%
B 129 of 255 = 51%
R + G + B ~ 66%. #C5B481 is quite light color.
R + G + B =
197 + 180 + 129 = 506 (100%)
R 197 of 506 ~ 38.93%
G 180 of 506 ~ 35.57%
B 129 of 506 ~ 25.49%
#C5B481 color CMYK value is (0,9,35,23).
CMYK: (0,9,35,23) C0M9Y35K23 (0%,9%,35%,23%) (0.00/0.09/0.35/0.23)
C5 | B4 | 81 | |
---|---|---|---|
RGB | 197 | 180 | 129 |
HSL | 45° | 36.96% | 63.92% |
HSB/HSV | 45° | 34.52% | 77.25% |
CMYK | 0.00% | 8.63% | 34.52% |
22.75% |
HEX | C5 | B4 | 81 |
Decimal | 197 | 180 | 129 |
Binary | 11000101 | 10110100 | 10000001 |
Octal | 305 | 264 | 201 |
Examples of css and html codes for elements with #C5B481 color. Also use rgb(197,180,129) instead hex code.
.myTextColor { color: #C5B481; }
<p style="color:#C5B481">This sample text font color is #C5B481.</p>
This text font color is #C5B481.
.myBgColor { background-color: #C5B481; }
<div style="background-color:#C5B481">Inner text</div>
This div background color is #C5B481.
.myBorderColor { border: 1px solid #C5B481; }
<div style="border:3px solid #C5B481">Div</div>
This div border color is #C5B481.
.myOpacity80 { color: #C5B481; opacity: 0.8; }
<p style="color:#C5B481;opacity:0.8;">80%</p>
Text with #C5B481 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5B481;}
<p style="text-shadow: 3px 3px 1px #C5B481">Text here.</p>
This text has shadow with #C5B481 color.
.textShadow {text-shadow: 3px 3px 1px #C5B481, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5B481, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5B481 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5B481, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5B481, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5B481 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5B481; -webkit-box-shadow: 1px 1px 3px 2px #C5B481; box-shadow: 1px 1px 3px 2px #C5B481; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5B481; -webkit-box-shadow: 1px 1px 3px 2px #C5B481; box-shadow:1px 1px 3px 2px #C5B481;">
Div content here</div>
This text has color #C5B481 on black background.
This text has color #C5B481 on white background.
This text has black color on #C5B481 background.
This text has white color on #C5B481 background.