Hex #00fa9a Color

#00fa9a
equivalent to

RGB

(0, 250, 154)

Details of #00fa9a

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
0
40.0183
0.44
1.00
87.3411
70.7043
157°
84.0859
250
70.7043
1.00
0.00
-70.6843
0.2618
100°
-62.1975
154
42.1100
0.49
0.38   0.02
32.4592
0.4626
98°
29.1773

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
0
0
0
0
Green
11111010
372
250
FA
Blue
10011010
232
154
9A

RGB in % of #00fa9a

%0.00
%61.88
%38.12

CMYK in % of #00fa9a

%100
%0
%38
%2

Triads of color #00fa9a

#00fa9a #fa9a00 #9a009a

Similar Colors to #00fa9a

#00fa9a #00fa1d #00ddfa

Preview Color #00fa9a on black ground

#00fa9a is very interesting for text.

Preview Color #00fa9a on white ground

#00fa9a is very interesting for text.

CSS Codes #00fa9a color

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

Text Font Color #00fa9a

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

This sample text font color is #00fa9a
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 #00fa9a

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

This div background color is #00fa9a


Border Color #00fa9a

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

The color of this border is #00fa9a


Examples Css3

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

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 #00fa9a">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

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

The shadow of div box using color #00fa9a