color details

Color Details
#a3ffff Color Hex

#a3ffff color RGB value is (10, 63, 255).
#a3ffff hex color red value is 10, green value is 63, and blue value is 255.
Cylindrical-coordinate representations (HSL) of color #a3ffff hue: 227.02, saturation: 1 and lightness: 0.52.

The process color (four-color CMYK) of #a3ffff color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #a3ffff is #ff9999. Color #a3ffff contains mainly RED.

Color Spaces
Color spaces of #a3ffffValue
RGB163, 255, 255
HSL0.5, 1, 0.82
HSV180°, 36°, 100°
XYZ68.91, 86.52, 107.66
Base Numbers
Base Red Green Blue
Binary 10100011 11111111 11111111
Octal 243 377 377
Decimal 163 255 255
Hex A3 FF FF

RGB Percentages for Color #a3ffff

24.22%
37.89%
37.89%

CMYK Percentages of the Color #a3ffff

36.08%
CSS Codes for Color #a3ffff
.mybgColor {background-color: #a3ffff;}
.myforeColor {color: #a3ffff;}
.myborderColor {border:3px solid #a3ffff;}
Text Font Color #a3ffff

<p style="color:#a3ffff">Text here</p>

This sample text is styled with the font color #a3ffff. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,

Background Color #a3ffff

<div style="background-color:#a3ffff">Div content here</div>

The background color of this div is #a3ffff
Border Color #a3ffff

<div style="border:3px solid #a3ffff">Div here</div>

The border color of this div is #a3ffff
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(163, 255, 255, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #a3ffff;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #a3ffff;
-webkit-box-shadow: 1px 1px 3px #a3ffff;
box-shadow: 1px 1px 3px #a3ffff;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(163, 255, 255, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #a3ffff;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<div style="-moz-box-shadow: 1px 1px 3px #a3ffff; -webkit-box-shadow: 1px 1px 3px #a3ffff; box-shadow: 1px 1px 3px #a3ffff;">Div content here</div>

This div box has a shadow with a specified color. #a3ffff

Scroll to Top