HEX: #C3BEAA
RGB: (195,190,170)
#C3BEAA contains red, green and blue colors in about the same proportion. Web safe color of #C3BEAA is #CCCC99 (or #CC9).
#C3BEAA color RGB value is (195,190,170).
RGB: (195,190,170) (76%,75%,67%)
R 195 of 255 = 76%
G 190 of 255 = 75%
B 170 of 255 = 67%
R + G + B ~ 73%. #C3BEAA is quite light color.
R + G + B =
195 + 190 + 170 = 555 (100%)
R 195 of 555 ~ 35.14%
G 190 of 555 ~ 34.23%
B 170 of 555 ~ 30.63%
#C3BEAA color CMYK value is (0,3,13,24).
CMYK: (0,3,13,24) C0M3Y13K24 (0%,3%,13%,24%) (0.00/0.03/0.13/0.24)
C3 | BE | AA | |
---|---|---|---|
RGB | 195 | 190 | 170 |
HSL | 48° | 17.24% | 71.57% |
HSB/HSV | 48° | 12.82% | 76.47% |
CMYK | 0.00% | 2.56% | 12.82% |
23.53% |
HEX | C3 | BE | AA |
Decimal | 195 | 190 | 170 |
Binary | 11000011 | 10111110 | 10101010 |
Octal | 303 | 276 | 252 |
Examples of css and html codes for elements with #C3BEAA color. Also use rgb(195,190,170) instead hex code.
.myTextColor { color: #C3BEAA; }
<p style="color:#C3BEAA">This sample text font color is #C3BEAA.</p>
This text font color is #C3BEAA.
.myBgColor { background-color: #C3BEAA; }
<div style="background-color:#C3BEAA">Inner text</div>
This div background color is #C3BEAA.
.myBorderColor { border: 1px solid #C3BEAA; }
<div style="border:3px solid #C3BEAA">Div</div>
This div border color is #C3BEAA.
.myOpacity80 { color: #C3BEAA; opacity: 0.8; }
<p style="color:#C3BEAA;opacity:0.8;">80%</p>
Text with #C3BEAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C3BEAA;}
<p style="text-shadow: 3px 3px 1px #C3BEAA">Text here.</p>
This text has shadow with #C3BEAA color.
.textShadow {text-shadow: 3px 3px 1px #C3BEAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C3BEAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C3BEAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C3BEAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C3BEAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C3BEAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C3BEAA; -webkit-box-shadow: 1px 1px 3px 2px #C3BEAA; box-shadow: 1px 1px 3px 2px #C3BEAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C3BEAA; -webkit-box-shadow: 1px 1px 3px 2px #C3BEAA; box-shadow:1px 1px 3px 2px #C3BEAA;">
Div content here</div>
This text has color #C3BEAA on black background.
This text has color #C3BEAA on white background.
This text has black color on #C3BEAA background.
This text has white color on #C3BEAA background.