HEX: #A3B0EB
RGB: (163,176,235)
#A3B0EB contains mainly green and blue colors. Web safe color of #A3B0EB is #9999FF (or #99F).
#A3B0EB color RGB value is (163,176,235).
RGB: (163,176,235) (64%,69%,92%)
R 163 of 255 = 64%
G 176 of 255 = 69%
B 235 of 255 = 92%
R + G + B ~ 75%. #A3B0EB is quite light color.
R + G + B =
163 + 176 + 235 = 574 (100%)
R 163 of 574 ~ 28.4%
G 176 of 574 ~ 30.66%
B 235 of 574 ~ 40.94%
#A3B0EB color CMYK value is (31,25,0,8).
CMYK: (31,25,0,8) C31M25Y0K8 (31%,25%,0%,8%) (0.31/0.25/0.00/0.08)
A3 | B0 | EB | |
---|---|---|---|
RGB | 163 | 176 | 235 |
HSL | 229° | 64.29% | 78.04% |
HSB/HSV | 229° | 30.64% | 92.16% |
CMYK | 30.64% | 25.11% | 0.00% |
7.84% |
HEX | A3 | B0 | EB |
Decimal | 163 | 176 | 235 |
Binary | 10100011 | 10110000 | 11101011 |
Octal | 243 | 260 | 353 |
Examples of css and html codes for elements with #A3B0EB color. Also use rgb(163,176,235) instead hex code.
.myTextColor { color: #A3B0EB; }
<p style="color:#A3B0EB">This sample text font color is #A3B0EB.</p>
This text font color is #A3B0EB.
.myBgColor { background-color: #A3B0EB; }
<div style="background-color:#A3B0EB">Inner text</div>
This div background color is #A3B0EB.
.myBorderColor { border: 1px solid #A3B0EB; }
<div style="border:3px solid #A3B0EB">Div</div>
This div border color is #A3B0EB.
.myOpacity80 { color: #A3B0EB; opacity: 0.8; }
<p style="color:#A3B0EB;opacity:0.8;">80%</p>
Text with #A3B0EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A3B0EB;}
<p style="text-shadow: 3px 3px 1px #A3B0EB">Text here.</p>
This text has shadow with #A3B0EB color.
.textShadow {text-shadow: 3px 3px 1px #A3B0EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A3B0EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #A3B0EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A3B0EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A3B0EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #A3B0EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A3B0EB; -webkit-box-shadow: 1px 1px 3px 2px #A3B0EB; box-shadow: 1px 1px 3px 2px #A3B0EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A3B0EB; -webkit-box-shadow: 1px 1px 3px 2px #A3B0EB; box-shadow:1px 1px 3px 2px #A3B0EB;">
Div content here</div>
This text has color #A3B0EB on black background.
This text has color #A3B0EB on white background.
This text has black color on #A3B0EB background.
This text has white color on #A3B0EB background.