Hex #adff2f Color

#adff2f
equivalent to

RGB

(173, 255, 47)

Details of #adff2f

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
173
53.5067
0.23
0.32
91.9576
80.6095
84°
89.7828
255
80.6095
1.00
0.00
-52.4838
0.3578
82°
-50.7410
47
15.4284
0.59
0.82   0.00
81.8660
0.5390
100°
52.6616

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
10101101
255
173
AD
Green
11111111
377
255
FF
Blue
101111
57
47
2F

RGB in % of #adff2f

%36.42
%53.68
%9.89

CMYK in % of #adff2f

%32
%0
%82
%0

Triads of color #adff2f

#adff2f #ff2fad #2fad2f

Similar Colors to #adff2f

#adff2f #ffe92f #45ff2f

Preview Color #adff2f on black ground

#adff2f is very interesting for text.

Preview Color #adff2f on white ground

#adff2f is very interesting for text.

CSS Codes #adff2f color

.mybgcolor {background-color:#adff2f; }
.myforecolor {color:#adff2f; }
.mybordercolor {border:3px solid #adff2f; }

Text Font Color #adff2f

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

This sample text font color is #adff2f
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #adff2f

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

This div background color is #adff2f


Border Color #adff2f

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

The color of this border is #adff2f


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #adff2f; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #adff2f;
-webkit-box-shadow: 1px 1px 3px 2px #adff2f;
box-shadow:         1px 1px 3px 2px #adff2f; }
				

Text Shadow using RGB

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

The shadow of this text using RGB.


Text Shadow using Hex

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

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #adff2f