HEX: #A5B3FF
RGB: (165,179,255)
#A5B3FF contains mainly blue color. Web safe color of #A5B3FF is #9999FF (or #99F).
#A5B3FF color RGB value is (165,179,255).
RGB: (165,179,255) (65%,70%,100%)
R 165 of 255 = 65%
G 179 of 255 = 70%
B 255 of 255 = 100%
R + G + B ~ 78%. #A5B3FF is quite light color.
R + G + B =
165 + 179 + 255 = 599 (100%)
R 165 of 599 ~ 27.55%
G 179 of 599 ~ 29.88%
B 255 of 599 ~ 42.57%
#A5B3FF color CMYK value is (35,30,0,0).
CMYK: (35,30,0,0) C35M30Y0K0 (35%,30%,0%,0%) (0.35/0.30/0.00/0.00)
A5 | B3 | FF | |
---|---|---|---|
RGB | 165 | 179 | 255 |
HSL | 231° | 100.00% | 82.35% |
HSB/HSV | 231° | 35.29% | 100.00% |
CMYK | 35.29% | 29.80% | 0.00% |
0.00% |
HEX | A5 | B3 | FF |
Decimal | 165 | 179 | 255 |
Binary | 10100101 | 10110011 | 11111111 |
Octal | 245 | 263 | 377 |
Examples of css and html codes for elements with #A5B3FF color. Also use rgb(165,179,255) instead hex code.
.myTextColor { color: #A5B3FF; }
<p style="color:#A5B3FF">This sample text font color is #A5B3FF.</p>
This text font color is #A5B3FF.
.myBgColor { background-color: #A5B3FF; }
<div style="background-color:#A5B3FF">Inner text</div>
This div background color is #A5B3FF.
.myBorderColor { border: 1px solid #A5B3FF; }
<div style="border:3px solid #A5B3FF">Div</div>
This div border color is #A5B3FF.
.myOpacity80 { color: #A5B3FF; opacity: 0.8; }
<p style="color:#A5B3FF;opacity:0.8;">80%</p>
Text with #A5B3FF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A5B3FF;}
<p style="text-shadow: 3px 3px 1px #A5B3FF">Text here.</p>
This text has shadow with #A5B3FF color.
.textShadow {text-shadow: 3px 3px 1px #A5B3FF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A5B3FF, 5px 5px 20px red">Text here.</p>
This text has shadow with #A5B3FF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A5B3FF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A5B3FF, Direction=45, Strength=4)">Text</p>
This text has shadow with #A5B3FF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A5B3FF; -webkit-box-shadow: 1px 1px 3px 2px #A5B3FF; box-shadow: 1px 1px 3px 2px #A5B3FF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A5B3FF; -webkit-box-shadow: 1px 1px 3px 2px #A5B3FF; box-shadow:1px 1px 3px 2px #A5B3FF;">
Div content here</div>
This text has color #A5B3FF on black background.
This text has color #A5B3FF on white background.
This text has black color on #A5B3FF background.
This text has white color on #A5B3FF background.