HEX: #9588DD
RGB: (149,136,221)
#9588DD contains mainly blue color. Web safe color of #9588DD is #9999CC (or #99C).
#9588DD color RGB value is (149,136,221).
RGB: (149,136,221) (58%,53%,87%)
R 149 of 255 = 58%
G 136 of 255 = 53%
B 221 of 255 = 87%
R + G + B ~ 66%. #9588DD is quite light color.
R + G + B =
149 + 136 + 221 = 506 (100%)
R 149 of 506 ~ 29.45%
G 136 of 506 ~ 26.88%
B 221 of 506 ~ 43.68%
#9588DD color CMYK value is (33,38,0,13).
CMYK: (33,38,0,13) C33M38Y0K13 (33%,38%,0%,13%) (0.33/0.38/0.00/0.13)
95 | 88 | DD | |
---|---|---|---|
RGB | 149 | 136 | 221 |
HSL | 249° | 55.56% | 70.00% |
HSB/HSV | 249° | 38.46% | 86.67% |
CMYK | 32.58% | 38.46% | 0.00% |
13.33% |
HEX | 95 | 88 | DD |
Decimal | 149 | 136 | 221 |
Binary | 10010101 | 10001000 | 11011101 |
Octal | 225 | 210 | 335 |
Examples of css and html codes for elements with #9588DD color. Also use rgb(149,136,221) instead hex code.
.myTextColor { color: #9588DD; }
<p style="color:#9588DD">This sample text font color is #9588DD.</p>
This text font color is #9588DD.
.myBgColor { background-color: #9588DD; }
<div style="background-color:#9588DD">Inner text</div>
This div background color is #9588DD.
.myBorderColor { border: 1px solid #9588DD; }
<div style="border:3px solid #9588DD">Div</div>
This div border color is #9588DD.
.myOpacity80 { color: #9588DD; opacity: 0.8; }
<p style="color:#9588DD;opacity:0.8;">80%</p>
Text with #9588DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9588DD;}
<p style="text-shadow: 3px 3px 1px #9588DD">Text here.</p>
This text has shadow with #9588DD color.
.textShadow {text-shadow: 3px 3px 1px #9588DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9588DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #9588DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9588DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9588DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #9588DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9588DD; -webkit-box-shadow: 1px 1px 3px 2px #9588DD; box-shadow: 1px 1px 3px 2px #9588DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9588DD; -webkit-box-shadow: 1px 1px 3px 2px #9588DD; box-shadow:1px 1px 3px 2px #9588DD;">
Div content here</div>
This text has color #9588DD on black background.
This text has color #9588DD on white background.
This text has black color on #9588DD background.
This text has white color on #9588DD background.