HEX: #A08EDD
RGB: (160,142,221)
#A08EDD contains mainly blue color. Web safe color of #A08EDD is #9999CC (or #99C).
#A08EDD color RGB value is (160,142,221).
RGB: (160,142,221) (63%,56%,87%)
R 160 of 255 = 63%
G 142 of 255 = 56%
B 221 of 255 = 87%
R + G + B ~ 69%. #A08EDD is quite light color.
R + G + B =
160 + 142 + 221 = 523 (100%)
R 160 of 523 ~ 30.59%
G 142 of 523 ~ 27.15%
B 221 of 523 ~ 42.26%
#A08EDD color CMYK value is (28,36,0,13).
CMYK: (28,36,0,13) C28M36Y0K13 (28%,36%,0%,13%) (0.28/0.36/0.00/0.13)
A0 | 8E | DD | |
---|---|---|---|
RGB | 160 | 142 | 221 |
HSL | 254° | 53.74% | 71.18% |
HSB/HSV | 254° | 35.75% | 86.67% |
CMYK | 27.60% | 35.75% | 0.00% |
13.33% |
HEX | A0 | 8E | DD |
Decimal | 160 | 142 | 221 |
Binary | 10100000 | 10001110 | 11011101 |
Octal | 240 | 216 | 335 |
Examples of css and html codes for elements with #A08EDD color. Also use rgb(160,142,221) instead hex code.
.myTextColor { color: #A08EDD; }
<p style="color:#A08EDD">This sample text font color is #A08EDD.</p>
This text font color is #A08EDD.
.myBgColor { background-color: #A08EDD; }
<div style="background-color:#A08EDD">Inner text</div>
This div background color is #A08EDD.
.myBorderColor { border: 1px solid #A08EDD; }
<div style="border:3px solid #A08EDD">Div</div>
This div border color is #A08EDD.
.myOpacity80 { color: #A08EDD; opacity: 0.8; }
<p style="color:#A08EDD;opacity:0.8;">80%</p>
Text with #A08EDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A08EDD;}
<p style="text-shadow: 3px 3px 1px #A08EDD">Text here.</p>
This text has shadow with #A08EDD color.
.textShadow {text-shadow: 3px 3px 1px #A08EDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A08EDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A08EDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A08EDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A08EDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A08EDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A08EDD; -webkit-box-shadow: 1px 1px 3px 2px #A08EDD; box-shadow: 1px 1px 3px 2px #A08EDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A08EDD; -webkit-box-shadow: 1px 1px 3px 2px #A08EDD; box-shadow:1px 1px 3px 2px #A08EDD;">
Div content here</div>
This text has color #A08EDD on black background.
This text has color #A08EDD on white background.
This text has black color on #A08EDD background.
This text has white color on #A08EDD background.