HEX: #C4949A
RGB: (196,148,154)
#C4949A contains red, green and blue colors in about the same proportion. Web safe color of #C4949A is #CC9999 (or #C99).
#C4949A color RGB value is (196,148,154).
RGB: (196,148,154) (77%,58%,60%)
R 196 of 255 = 77%
G 148 of 255 = 58%
B 154 of 255 = 60%
R + G + B ~ 65%. #C4949A is quite light color.
R + G + B =
196 + 148 + 154 = 498 (100%)
R 196 of 498 ~ 39.36%
G 148 of 498 ~ 29.72%
B 154 of 498 ~ 30.92%
#C4949A color CMYK value is (0,24,21,23).
CMYK: (0,24,21,23) C0M24Y21K23 (0%,24%,21%,23%) (0.00/0.24/0.21/0.23)
C4 | 94 | 9A | |
---|---|---|---|
RGB | 196 | 148 | 154 |
HSL | 353° | 28.92% | 67.45% |
HSB/HSV | 353° | 24.49% | 76.86% |
CMYK | 0.00% | 24.49% | 21.43% |
23.14% |
HEX | C4 | 94 | 9A |
Decimal | 196 | 148 | 154 |
Binary | 11000100 | 10010100 | 10011010 |
Octal | 304 | 224 | 232 |
Examples of css and html codes for elements with #C4949A color. Also use rgb(196,148,154) instead hex code.
.myTextColor { color: #C4949A; }
<p style="color:#C4949A">This sample text font color is #C4949A.</p>
This text font color is #C4949A.
.myBgColor { background-color: #C4949A; }
<div style="background-color:#C4949A">Inner text</div>
This div background color is #C4949A.
.myBorderColor { border: 1px solid #C4949A; }
<div style="border:3px solid #C4949A">Div</div>
This div border color is #C4949A.
.myOpacity80 { color: #C4949A; opacity: 0.8; }
<p style="color:#C4949A;opacity:0.8;">80%</p>
Text with #C4949A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4949A;}
<p style="text-shadow: 3px 3px 1px #C4949A">Text here.</p>
This text has shadow with #C4949A color.
.textShadow {text-shadow: 3px 3px 1px #C4949A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4949A, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4949A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4949A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4949A, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4949A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4949A; -webkit-box-shadow: 1px 1px 3px 2px #C4949A; box-shadow: 1px 1px 3px 2px #C4949A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4949A; -webkit-box-shadow: 1px 1px 3px 2px #C4949A; box-shadow:1px 1px 3px 2px #C4949A;">
Div content here</div>
This text has color #C4949A on black background.
This text has color #C4949A on white background.
This text has black color on #C4949A background.
This text has white color on #C4949A background.