HEX: #C597FC
RGB: (197,151,252)
#C597FC contains mainly red and blue colors. Web safe color of #C597FC is #CC99FF (or #C9F).
#C597FC color RGB value is (197,151,252).
RGB: (197,151,252) (77%,59%,99%)
R 197 of 255 = 77%
G 151 of 255 = 59%
B 252 of 255 = 99%
R + G + B ~ 78%. #C597FC is quite light color.
R + G + B =
197 + 151 + 252 = 600 (100%)
R 197 of 600 ~ 32.83%
G 151 of 600 ~ 25.17%
B 252 of 600 ~ 42%
#C597FC color CMYK value is (22,40,0,1).
CMYK: (22,40,0,1) C22M40Y0K1 (22%,40%,0%,1%) (0.22/0.40/0.00/0.01)
C5 | 97 | FC | |
---|---|---|---|
RGB | 197 | 151 | 252 |
HSL | 267° | 94.39% | 79.02% |
HSB/HSV | 267° | 40.08% | 98.82% |
CMYK | 21.83% | 40.08% | 0.00% |
1.18% |
HEX | C5 | 97 | FC |
Decimal | 197 | 151 | 252 |
Binary | 11000101 | 10010111 | 11111100 |
Octal | 305 | 227 | 374 |
Examples of css and html codes for elements with #C597FC color. Also use rgb(197,151,252) instead hex code.
.myTextColor { color: #C597FC; }
<p style="color:#C597FC">This sample text font color is #C597FC.</p>
This text font color is #C597FC.
.myBgColor { background-color: #C597FC; }
<div style="background-color:#C597FC">Inner text</div>
This div background color is #C597FC.
.myBorderColor { border: 1px solid #C597FC; }
<div style="border:3px solid #C597FC">Div</div>
This div border color is #C597FC.
.myOpacity80 { color: #C597FC; opacity: 0.8; }
<p style="color:#C597FC;opacity:0.8;">80%</p>
Text with #C597FC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C597FC;}
<p style="text-shadow: 3px 3px 1px #C597FC">Text here.</p>
This text has shadow with #C597FC color.
.textShadow {text-shadow: 3px 3px 1px #C597FC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C597FC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C597FC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C597FC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C597FC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C597FC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C597FC; -webkit-box-shadow: 1px 1px 3px 2px #C597FC; box-shadow: 1px 1px 3px 2px #C597FC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C597FC; -webkit-box-shadow: 1px 1px 3px 2px #C597FC; box-shadow:1px 1px 3px 2px #C597FC;">
Div content here</div>
This text has color #C597FC on black background.
This text has color #C597FC on white background.
This text has black color on #C597FC background.
This text has white color on #C597FC background.