HEX: #C598CD
RGB: (197,152,205)
#C598CD contains red, green and blue colors in about the same proportion. Web safe color of #C598CD is #CC99CC (or #C9C).
#C598CD color RGB value is (197,152,205).
RGB: (197,152,205) (77%,60%,80%)
R 197 of 255 = 77%
G 152 of 255 = 60%
B 205 of 255 = 80%
R + G + B ~ 72%. #C598CD is quite light color.
R + G + B =
197 + 152 + 205 = 554 (100%)
R 197 of 554 ~ 35.56%
G 152 of 554 ~ 27.44%
B 205 of 554 ~ 37%
#C598CD color CMYK value is (4,26,0,20).
CMYK: (4,26,0,20) C4M26Y0K20 (4%,26%,0%,20%) (0.04/0.26/0.00/0.20)
C5 | 98 | CD | |
---|---|---|---|
RGB | 197 | 152 | 205 |
HSL | 291° | 34.64% | 70.00% |
HSB/HSV | 291° | 25.85% | 80.39% |
CMYK | 3.90% | 25.85% | 0.00% |
19.61% |
HEX | C5 | 98 | CD |
Decimal | 197 | 152 | 205 |
Binary | 11000101 | 10011000 | 11001101 |
Octal | 305 | 230 | 315 |
Examples of css and html codes for elements with #C598CD color. Also use rgb(197,152,205) instead hex code.
.myTextColor { color: #C598CD; }
<p style="color:#C598CD">This sample text font color is #C598CD.</p>
This text font color is #C598CD.
.myBgColor { background-color: #C598CD; }
<div style="background-color:#C598CD">Inner text</div>
This div background color is #C598CD.
.myBorderColor { border: 1px solid #C598CD; }
<div style="border:3px solid #C598CD">Div</div>
This div border color is #C598CD.
.myOpacity80 { color: #C598CD; opacity: 0.8; }
<p style="color:#C598CD;opacity:0.8;">80%</p>
Text with #C598CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C598CD;}
<p style="text-shadow: 3px 3px 1px #C598CD">Text here.</p>
This text has shadow with #C598CD color.
.textShadow {text-shadow: 3px 3px 1px #C598CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C598CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C598CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C598CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C598CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C598CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C598CD; -webkit-box-shadow: 1px 1px 3px 2px #C598CD; box-shadow: 1px 1px 3px 2px #C598CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C598CD; -webkit-box-shadow: 1px 1px 3px 2px #C598CD; box-shadow:1px 1px 3px 2px #C598CD;">
Div content here</div>
This text has color #C598CD on black background.
This text has color #C598CD on white background.
This text has black color on #C598CD background.
This text has white color on #C598CD background.