HEX: #895DDD
RGB: (137,93,221)
#895DDD contains mainly blue color. Web safe color of #895DDD is #9966CC (or #96C).
#895DDD color RGB value is (137,93,221).
RGB: (137,93,221) (54%,36%,87%)
R 137 of 255 = 54%
G 93 of 255 = 36%
B 221 of 255 = 87%
R + G + B ~ 59%. #895DDD is middle color (not dark and not light).
R + G + B =
137 + 93 + 221 = 451 (100%)
R 137 of 451 ~ 30.38%
G 93 of 451 ~ 20.62%
B 221 of 451 ~ 49%
#895DDD color CMYK value is (38,58,0,13).
CMYK: (38,58,0,13) C38M58Y0K13 (38%,58%,0%,13%) (0.38/0.58/0.00/0.13)
89 | 5D | DD | |
---|---|---|---|
RGB | 137 | 93 | 221 |
HSL | 261° | 65.31% | 61.57% |
HSB/HSV | 261° | 57.92% | 86.67% |
CMYK | 38.01% | 57.92% | 0.00% |
13.33% |
HEX | 89 | 5D | DD |
Decimal | 137 | 93 | 221 |
Binary | 10001001 | 1011101 | 11011101 |
Octal | 211 | 135 | 335 |
Examples of css and html codes for elements with #895DDD color. Also use rgb(137,93,221) instead hex code.
.myTextColor { color: #895DDD; }
<p style="color:#895DDD">This sample text font color is #895DDD.</p>
This text font color is #895DDD.
.myBgColor { background-color: #895DDD; }
<div style="background-color:#895DDD">Inner text</div>
This div background color is #895DDD.
.myBorderColor { border: 1px solid #895DDD; }
<div style="border:3px solid #895DDD">Div</div>
This div border color is #895DDD.
.myOpacity80 { color: #895DDD; opacity: 0.8; }
<p style="color:#895DDD;opacity:0.8;">80%</p>
Text with #895DDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #895DDD;}
<p style="text-shadow: 3px 3px 1px #895DDD">Text here.</p>
This text has shadow with #895DDD color.
.textShadow {text-shadow: 3px 3px 1px #895DDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #895DDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #895DDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#895DDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#895DDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #895DDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #895DDD; -webkit-box-shadow: 1px 1px 3px 2px #895DDD; box-shadow: 1px 1px 3px 2px #895DDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #895DDD; -webkit-box-shadow: 1px 1px 3px 2px #895DDD; box-shadow:1px 1px 3px 2px #895DDD;">
Div content here</div>
This text has color #895DDD on black background.
This text has color #895DDD on white background.
This text has black color on #895DDD background.
This text has white color on #895DDD background.