HEX: #A15EFD
RGB: (161,94,253)
#A15EFD contains mainly blue color. Web safe color of #A15EFD is #9966FF (or #96F).
#A15EFD color RGB value is (161,94,253).
RGB: (161,94,253) (63%,37%,99%)
R 161 of 255 = 63%
G 94 of 255 = 37%
B 253 of 255 = 99%
R + G + B ~ 66%. #A15EFD is quite light color.
R + G + B =
161 + 94 + 253 = 508 (100%)
R 161 of 508 ~ 31.69%
G 94 of 508 ~ 18.5%
B 253 of 508 ~ 49.8%
#A15EFD color CMYK value is (36,63,0,1).
CMYK: (36,63,0,1) C36M63Y0K1 (36%,63%,0%,1%) (0.36/0.63/0.00/0.01)
A1 | 5E | FD | |
---|---|---|---|
RGB | 161 | 94 | 253 |
HSL | 265° | 97.55% | 68.04% |
HSB/HSV | 265° | 62.85% | 99.22% |
CMYK | 36.36% | 62.85% | 0.00% |
0.78% |
HEX | A1 | 5E | FD |
Decimal | 161 | 94 | 253 |
Binary | 10100001 | 1011110 | 11111101 |
Octal | 241 | 136 | 375 |
Examples of css and html codes for elements with #A15EFD color. Also use rgb(161,94,253) instead hex code.
.myTextColor { color: #A15EFD; }
<p style="color:#A15EFD">This sample text font color is #A15EFD.</p>
This text font color is #A15EFD.
.myBgColor { background-color: #A15EFD; }
<div style="background-color:#A15EFD">Inner text</div>
This div background color is #A15EFD.
.myBorderColor { border: 1px solid #A15EFD; }
<div style="border:3px solid #A15EFD">Div</div>
This div border color is #A15EFD.
.myOpacity80 { color: #A15EFD; opacity: 0.8; }
<p style="color:#A15EFD;opacity:0.8;">80%</p>
Text with #A15EFD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A15EFD;}
<p style="text-shadow: 3px 3px 1px #A15EFD">Text here.</p>
This text has shadow with #A15EFD color.
.textShadow {text-shadow: 3px 3px 1px #A15EFD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A15EFD, 5px 5px 20px red">Text here.</p>
This text has shadow with #A15EFD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A15EFD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A15EFD, Direction=45, Strength=4)">Text</p>
This text has shadow with #A15EFD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A15EFD; -webkit-box-shadow: 1px 1px 3px 2px #A15EFD; box-shadow: 1px 1px 3px 2px #A15EFD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A15EFD; -webkit-box-shadow: 1px 1px 3px 2px #A15EFD; box-shadow:1px 1px 3px 2px #A15EFD;">
Div content here</div>
This text has color #A15EFD on black background.
This text has color #A15EFD on white background.
This text has black color on #A15EFD background.
This text has white color on #A15EFD background.