HEX: #C59EFA
RGB: (197,158,250)
#C59EFA contains mainly red and blue colors. Web safe color of #C59EFA is #CC99FF (or #C9F).
#C59EFA color RGB value is (197,158,250).
RGB: (197,158,250) (77%,62%,98%)
R 197 of 255 = 77%
G 158 of 255 = 62%
B 250 of 255 = 98%
R + G + B ~ 79%. #C59EFA is quite light color.
R + G + B =
197 + 158 + 250 = 605 (100%)
R 197 of 605 ~ 32.56%
G 158 of 605 ~ 26.12%
B 250 of 605 ~ 41.32%
#C59EFA color CMYK value is (21,37,0,2).
CMYK: (21,37,0,2) C21M37Y0K2 (21%,37%,0%,2%) (0.21/0.37/0.00/0.02)
C5 | 9E | FA | |
---|---|---|---|
RGB | 197 | 158 | 250 |
HSL | 265° | 90.20% | 80.00% |
HSB/HSV | 265° | 36.80% | 98.04% |
CMYK | 21.20% | 36.80% | 0.00% |
1.96% |
HEX | C5 | 9E | FA |
Decimal | 197 | 158 | 250 |
Binary | 11000101 | 10011110 | 11111010 |
Octal | 305 | 236 | 372 |
Examples of css and html codes for elements with #C59EFA color. Also use rgb(197,158,250) instead hex code.
.myTextColor { color: #C59EFA; }
<p style="color:#C59EFA">This sample text font color is #C59EFA.</p>
This text font color is #C59EFA.
.myBgColor { background-color: #C59EFA; }
<div style="background-color:#C59EFA">Inner text</div>
This div background color is #C59EFA.
.myBorderColor { border: 1px solid #C59EFA; }
<div style="border:3px solid #C59EFA">Div</div>
This div border color is #C59EFA.
.myOpacity80 { color: #C59EFA; opacity: 0.8; }
<p style="color:#C59EFA;opacity:0.8;">80%</p>
Text with #C59EFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C59EFA;}
<p style="text-shadow: 3px 3px 1px #C59EFA">Text here.</p>
This text has shadow with #C59EFA color.
.textShadow {text-shadow: 3px 3px 1px #C59EFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C59EFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C59EFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C59EFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C59EFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C59EFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C59EFA; -webkit-box-shadow: 1px 1px 3px 2px #C59EFA; box-shadow: 1px 1px 3px 2px #C59EFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C59EFA; -webkit-box-shadow: 1px 1px 3px 2px #C59EFA; box-shadow:1px 1px 3px 2px #C59EFA;">
Div content here</div>
This text has color #C59EFA on black background.
This text has color #C59EFA on white background.
This text has black color on #C59EFA background.
This text has white color on #C59EFA background.