HEX: #C79BAA
RGB: (199,155,170)
#C79BAA contains red, green and blue colors in about the same proportion. Web safe color of #C79BAA is #CC9999 (or #C99).
#C79BAA color RGB value is (199,155,170).
RGB: (199,155,170) (78%,61%,67%)
R 199 of 255 = 78%
G 155 of 255 = 61%
B 170 of 255 = 67%
R + G + B ~ 69%. #C79BAA is quite light color.
R + G + B =
199 + 155 + 170 = 524 (100%)
R 199 of 524 ~ 37.98%
G 155 of 524 ~ 29.58%
B 170 of 524 ~ 32.44%
#C79BAA color CMYK value is (0,22,15,22).
CMYK: (0,22,15,22) C0M22Y15K22 (0%,22%,15%,22%) (0.00/0.22/0.15/0.22)
C7 | 9B | AA | |
---|---|---|---|
RGB | 199 | 155 | 170 |
HSL | 340° | 28.21% | 69.41% |
HSB/HSV | 340° | 22.11% | 78.04% |
CMYK | 0.00% | 22.11% | 14.57% |
21.96% |
HEX | C7 | 9B | AA |
Decimal | 199 | 155 | 170 |
Binary | 11000111 | 10011011 | 10101010 |
Octal | 307 | 233 | 252 |
Examples of css and html codes for elements with #C79BAA color. Also use rgb(199,155,170) instead hex code.
.myTextColor { color: #C79BAA; }
<p style="color:#C79BAA">This sample text font color is #C79BAA.</p>
This text font color is #C79BAA.
.myBgColor { background-color: #C79BAA; }
<div style="background-color:#C79BAA">Inner text</div>
This div background color is #C79BAA.
.myBorderColor { border: 1px solid #C79BAA; }
<div style="border:3px solid #C79BAA">Div</div>
This div border color is #C79BAA.
.myOpacity80 { color: #C79BAA; opacity: 0.8; }
<p style="color:#C79BAA;opacity:0.8;">80%</p>
Text with #C79BAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C79BAA;}
<p style="text-shadow: 3px 3px 1px #C79BAA">Text here.</p>
This text has shadow with #C79BAA color.
.textShadow {text-shadow: 3px 3px 1px #C79BAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C79BAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C79BAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C79BAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C79BAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C79BAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C79BAA; -webkit-box-shadow: 1px 1px 3px 2px #C79BAA; box-shadow: 1px 1px 3px 2px #C79BAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C79BAA; -webkit-box-shadow: 1px 1px 3px 2px #C79BAA; box-shadow:1px 1px 3px 2px #C79BAA;">
Div content here</div>
This text has color #C79BAA on black background.
This text has color #C79BAA on white background.
This text has black color on #C79BAA background.
This text has white color on #C79BAA background.