HEX: #C59DBE
RGB: (197,157,190)
#C59DBE contains red, green and blue colors in about the same proportion. Web safe color of #C59DBE is #CC99CC (or #C9C).
#C59DBE color RGB value is (197,157,190).
RGB: (197,157,190) (77%,62%,75%)
R 197 of 255 = 77%
G 157 of 255 = 62%
B 190 of 255 = 75%
R + G + B ~ 71%. #C59DBE is quite light color.
R + G + B =
197 + 157 + 190 = 544 (100%)
R 197 of 544 ~ 36.21%
G 157 of 544 ~ 28.86%
B 190 of 544 ~ 34.93%
#C59DBE color CMYK value is (0,20,4,23).
CMYK: (0,20,4,23) C0M20Y4K23 (0%,20%,4%,23%) (0.00/0.20/0.04/0.23)
C5 | 9D | BE | |
---|---|---|---|
RGB | 197 | 157 | 190 |
HSL | 311° | 25.64% | 69.41% |
HSB/HSV | 311° | 20.30% | 77.25% |
CMYK | 0.00% | 20.30% | 3.55% |
22.75% |
HEX | C5 | 9D | BE |
Decimal | 197 | 157 | 190 |
Binary | 11000101 | 10011101 | 10111110 |
Octal | 305 | 235 | 276 |
Examples of css and html codes for elements with #C59DBE color. Also use rgb(197,157,190) instead hex code.
.myTextColor { color: #C59DBE; }
<p style="color:#C59DBE">This sample text font color is #C59DBE.</p>
This text font color is #C59DBE.
.myBgColor { background-color: #C59DBE; }
<div style="background-color:#C59DBE">Inner text</div>
This div background color is #C59DBE.
.myBorderColor { border: 1px solid #C59DBE; }
<div style="border:3px solid #C59DBE">Div</div>
This div border color is #C59DBE.
.myOpacity80 { color: #C59DBE; opacity: 0.8; }
<p style="color:#C59DBE;opacity:0.8;">80%</p>
Text with #C59DBE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C59DBE;}
<p style="text-shadow: 3px 3px 1px #C59DBE">Text here.</p>
This text has shadow with #C59DBE color.
.textShadow {text-shadow: 3px 3px 1px #C59DBE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C59DBE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C59DBE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C59DBE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C59DBE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C59DBE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C59DBE; -webkit-box-shadow: 1px 1px 3px 2px #C59DBE; box-shadow: 1px 1px 3px 2px #C59DBE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C59DBE; -webkit-box-shadow: 1px 1px 3px 2px #C59DBE; box-shadow:1px 1px 3px 2px #C59DBE;">
Div content here</div>
This text has color #C59DBE on black background.
This text has color #C59DBE on white background.
This text has black color on #C59DBE background.
This text has white color on #C59DBE background.