HEX: #A53EED
RGB: (165,62,237)
#A53EED contains mainly blue color. Web safe color of #A53EED is #9933FF (or #93F).
#A53EED color RGB value is (165,62,237).
RGB: (165,62,237) (65%,24%,93%)
R 165 of 255 = 65%
G 62 of 255 = 24%
B 237 of 255 = 93%
R + G + B ~ 61%. #A53EED is quite light color.
R + G + B =
165 + 62 + 237 = 464 (100%)
R 165 of 464 ~ 35.56%
G 62 of 464 ~ 13.36%
B 237 of 464 ~ 51.08%
#A53EED color CMYK value is (30,74,0,7).
CMYK: (30,74,0,7) C30M74Y0K7 (30%,74%,0%,7%) (0.30/0.74/0.00/0.07)
A5 | 3E | ED | |
---|---|---|---|
RGB | 165 | 62 | 237 |
HSL | 275° | 82.94% | 58.63% |
HSB/HSV | 275° | 73.84% | 92.94% |
CMYK | 30.38% | 73.84% | 0.00% |
7.06% |
HEX | A5 | 3E | ED |
Decimal | 165 | 62 | 237 |
Binary | 10100101 | 111110 | 11101101 |
Octal | 245 | 76 | 355 |
Examples of css and html codes for elements with #A53EED color. Also use rgb(165,62,237) instead hex code.
.myTextColor { color: #A53EED; }
<p style="color:#A53EED">This sample text font color is #A53EED.</p>
This text font color is #A53EED.
.myBgColor { background-color: #A53EED; }
<div style="background-color:#A53EED">Inner text</div>
This div background color is #A53EED.
.myBorderColor { border: 1px solid #A53EED; }
<div style="border:3px solid #A53EED">Div</div>
This div border color is #A53EED.
.myOpacity80 { color: #A53EED; opacity: 0.8; }
<p style="color:#A53EED;opacity:0.8;">80%</p>
Text with #A53EED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A53EED;}
<p style="text-shadow: 3px 3px 1px #A53EED">Text here.</p>
This text has shadow with #A53EED color.
.textShadow {text-shadow: 3px 3px 1px #A53EED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A53EED, 5px 5px 20px red">Text here.</p>
This text has shadow with #A53EED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A53EED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A53EED, Direction=45, Strength=4)">Text</p>
This text has shadow with #A53EED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A53EED; -webkit-box-shadow: 1px 1px 3px 2px #A53EED; box-shadow: 1px 1px 3px 2px #A53EED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A53EED; -webkit-box-shadow: 1px 1px 3px 2px #A53EED; box-shadow:1px 1px 3px 2px #A53EED;">
Div content here</div>
This text has color #A53EED on black background.
This text has color #A53EED on white background.
This text has black color on #A53EED background.
This text has white color on #A53EED background.