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