HEX: #A553EA
RGB: (165,83,234)
#A553EA contains mainly blue color. Web safe color of #A553EA is #9966FF (or #96F).
#A553EA color RGB value is (165,83,234).
RGB: (165,83,234) (65%,33%,92%)
R 165 of 255 = 65%
G 83 of 255 = 33%
B 234 of 255 = 92%
R + G + B ~ 63%. #A553EA is quite light color.
R + G + B =
165 + 83 + 234 = 482 (100%)
R 165 of 482 ~ 34.23%
G 83 of 482 ~ 17.22%
B 234 of 482 ~ 48.55%
#A553EA color CMYK value is (29,65,0,8).
CMYK: (29,65,0,8) C29M65Y0K8 (29%,65%,0%,8%) (0.29/0.65/0.00/0.08)
A5 | 53 | EA | |
---|---|---|---|
RGB | 165 | 83 | 234 |
HSL | 273° | 78.24% | 62.16% |
HSB/HSV | 273° | 64.53% | 91.76% |
CMYK | 29.49% | 64.53% | 0.00% |
8.24% |
HEX | A5 | 53 | EA |
Decimal | 165 | 83 | 234 |
Binary | 10100101 | 1010011 | 11101010 |
Octal | 245 | 123 | 352 |
Examples of css and html codes for elements with #A553EA color. Also use rgb(165,83,234) instead hex code.
.myTextColor { color: #A553EA; }
<p style="color:#A553EA">This sample text font color is #A553EA.</p>
This text font color is #A553EA.
.myBgColor { background-color: #A553EA; }
<div style="background-color:#A553EA">Inner text</div>
This div background color is #A553EA.
.myBorderColor { border: 1px solid #A553EA; }
<div style="border:3px solid #A553EA">Div</div>
This div border color is #A553EA.
.myOpacity80 { color: #A553EA; opacity: 0.8; }
<p style="color:#A553EA;opacity:0.8;">80%</p>
Text with #A553EA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A553EA;}
<p style="text-shadow: 3px 3px 1px #A553EA">Text here.</p>
This text has shadow with #A553EA color.
.textShadow {text-shadow: 3px 3px 1px #A553EA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A553EA, 5px 5px 20px red">Text here.</p>
This text has shadow with #A553EA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A553EA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A553EA, Direction=45, Strength=4)">Text</p>
This text has shadow with #A553EA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A553EA; -webkit-box-shadow: 1px 1px 3px 2px #A553EA; box-shadow: 1px 1px 3px 2px #A553EA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A553EA; -webkit-box-shadow: 1px 1px 3px 2px #A553EA; box-shadow:1px 1px 3px 2px #A553EA;">
Div content here</div>
This text has color #A553EA on black background.
This text has color #A553EA on white background.
This text has black color on #A553EA background.
This text has white color on #A553EA background.