HEX: #C25D8D
RGB: (194,93,141)
#C25D8D contains mainly red and blue colors. Web safe color of #C25D8D is #CC6699 (or #C69).
#C25D8D color RGB value is (194,93,141).
RGB: (194,93,141) (76%,36%,55%)
R 194 of 255 = 76%
G 93 of 255 = 36%
B 141 of 255 = 55%
R + G + B ~ 56%. #C25D8D is middle color (not dark and not light).
R + G + B =
194 + 93 + 141 = 428 (100%)
R 194 of 428 ~ 45.33%
G 93 of 428 ~ 21.73%
B 141 of 428 ~ 32.94%
#C25D8D color CMYK value is (0,52,27,24).
CMYK: (0,52,27,24) C0M52Y27K24 (0%,52%,27%,24%) (0.00/0.52/0.27/0.24)
C2 | 5D | 8D | |
---|---|---|---|
RGB | 194 | 93 | 141 |
HSL | 331° | 45.29% | 56.27% |
HSB/HSV | 331° | 52.06% | 76.08% |
CMYK | 0.00% | 52.06% | 27.32% |
23.92% |
HEX | C2 | 5D | 8D |
Decimal | 194 | 93 | 141 |
Binary | 11000010 | 1011101 | 10001101 |
Octal | 302 | 135 | 215 |
Examples of css and html codes for elements with #C25D8D color. Also use rgb(194,93,141) instead hex code.
.myTextColor { color: #C25D8D; }
<p style="color:#C25D8D">This sample text font color is #C25D8D.</p>
This text font color is #C25D8D.
.myBgColor { background-color: #C25D8D; }
<div style="background-color:#C25D8D">Inner text</div>
This div background color is #C25D8D.
.myBorderColor { border: 1px solid #C25D8D; }
<div style="border:3px solid #C25D8D">Div</div>
This div border color is #C25D8D.
.myOpacity80 { color: #C25D8D; opacity: 0.8; }
<p style="color:#C25D8D;opacity:0.8;">80%</p>
Text with #C25D8D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C25D8D;}
<p style="text-shadow: 3px 3px 1px #C25D8D">Text here.</p>
This text has shadow with #C25D8D color.
.textShadow {text-shadow: 3px 3px 1px #C25D8D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C25D8D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C25D8D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C25D8D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C25D8D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C25D8D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C25D8D; -webkit-box-shadow: 1px 1px 3px 2px #C25D8D; box-shadow: 1px 1px 3px 2px #C25D8D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C25D8D; -webkit-box-shadow: 1px 1px 3px 2px #C25D8D; box-shadow:1px 1px 3px 2px #C25D8D;">
Div content here</div>
This text has color #C25D8D on black background.
This text has color #C25D8D on white background.
This text has black color on #C25D8D background.
This text has white color on #C25D8D background.