HEX: #C46AB8
RGB: (196,106,184)
#C46AB8 contains mainly red and blue colors. Web safe color of #C46AB8 is #CC66CC (or #C6C).
#C46AB8 color RGB value is (196,106,184).
RGB: (196,106,184) (77%,42%,72%)
R 196 of 255 = 77%
G 106 of 255 = 42%
B 184 of 255 = 72%
R + G + B ~ 64%. #C46AB8 is quite light color.
R + G + B =
196 + 106 + 184 = 486 (100%)
R 196 of 486 ~ 40.33%
G 106 of 486 ~ 21.81%
B 184 of 486 ~ 37.86%
#C46AB8 color CMYK value is (0,46,6,23).
CMYK: (0,46,6,23) C0M46Y6K23 (0%,46%,6%,23%) (0.00/0.46/0.06/0.23)
C4 | 6A | B8 | |
---|---|---|---|
RGB | 196 | 106 | 184 |
HSL | 308° | 43.27% | 59.22% |
HSB/HSV | 308° | 45.92% | 76.86% |
CMYK | 0.00% | 45.92% | 6.12% |
23.14% |
HEX | C4 | 6A | B8 |
Decimal | 196 | 106 | 184 |
Binary | 11000100 | 1101010 | 10111000 |
Octal | 304 | 152 | 270 |
Examples of css and html codes for elements with #C46AB8 color. Also use rgb(196,106,184) instead hex code.
.myTextColor { color: #C46AB8; }
<p style="color:#C46AB8">This sample text font color is #C46AB8.</p>
This text font color is #C46AB8.
.myBgColor { background-color: #C46AB8; }
<div style="background-color:#C46AB8">Inner text</div>
This div background color is #C46AB8.
.myBorderColor { border: 1px solid #C46AB8; }
<div style="border:3px solid #C46AB8">Div</div>
This div border color is #C46AB8.
.myOpacity80 { color: #C46AB8; opacity: 0.8; }
<p style="color:#C46AB8;opacity:0.8;">80%</p>
Text with #C46AB8 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C46AB8;}
<p style="text-shadow: 3px 3px 1px #C46AB8">Text here.</p>
This text has shadow with #C46AB8 color.
.textShadow {text-shadow: 3px 3px 1px #C46AB8, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C46AB8, 5px 5px 20px red">Text here.</p>
This text has shadow with #C46AB8 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C46AB8, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C46AB8, Direction=45, Strength=4)">Text</p>
This text has shadow with #C46AB8 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C46AB8; -webkit-box-shadow: 1px 1px 3px 2px #C46AB8; box-shadow: 1px 1px 3px 2px #C46AB8; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C46AB8; -webkit-box-shadow: 1px 1px 3px 2px #C46AB8; box-shadow:1px 1px 3px 2px #C46AB8;">
Div content here</div>
This text has color #C46AB8 on black background.
This text has color #C46AB8 on white background.
This text has black color on #C46AB8 background.
This text has white color on #C46AB8 background.