Html Css Color HEX #00FF00 Lime

📋 copy color: '#00FF00'

red 0 ◦ green 255 ◦ blue 0

#00FF00
Download Color Icon.PNG:
16x16 32x32 64x64 128x128 256x256

Shades of Lime #00FF00

Tints of Lime #00FF00

RGB

 RED value IS 0 (0.39% from 255) = 0%

 GREEN value IS 255 (100% from 255) = 100%

 BLUE value IS 0 (0.39% from 255) = 0%

R = 0%
G = 100%
B = 0%

CMYK

 C value IS 1

 M value IS 0

 Y value IS 1

 K value IS 0

RGB Variations

RGB:
RBG:
GRB:
GBR:
BRG:
BGR:

Color information

#00FF00 (or 0x00FF00) is known color: Lime. HEX triplet: 00, FF and 00. RGB value is (0,255,0). Sum of RGB (Red+Green+Blue) = 0+255+0=255 (33% of max value = 765). Red value is 0 (0.39% from 255 or 0% from 255); Green value is 255 (100% from 255 or 100% from 255); Blue value is 0 (0.39% from 255 or 0% from 255); Max value from RGB is 255 - color contains mainly: green. Hex color #00FF00 is a web safe color. Inversed color of #00FF00 is #FF00FF. Grayscale: #969696. Windows color (decimal): -16711936 or 65280. OLE color: 65280.

HSL color Cylindrical-coordinate representation of color #00FF00: hue angle of 120º degrees, saturation: 1, lightness: 0.5%. HSV value (or HSB Brightness) of color is 1% and HSV saturation: 1%. Process color model (Four color, CMYK) of #00FF00 is Cyan = 1, Magento = 0, Yellow = 1 and Black (K on CMYK) = 0.

Color convert

RGB 0 255 0 -
CMYK 1 0 1 0
HSL 120º 1% 0.5% -
HSV(B) 120º 1% 1% -
XYZ 35.76 71.52 11.92 -
YUV 149.69 43.52 21.23 -
System Red Green Blue C M Y K H S L
Decimal 0 255 0 1 0 1 0 120 1 0.5
Hex 0 FF 0 64 0 64 0 78 64 32
Octal 0 377 0 144 0 144 0 170 144 62
Binary 0 11111111 0 1100100 0 1100100 0 1111000 1100100 110010

Color Harmonies of #00FF00

Triadic Colors

Analogous colors

Split complements colors

Complementary color

Monochromatic Colors of #00FF00

Black with #00FF00

Text Example


Text Example

White with #00FF00

Text Example


Text Example

HTML Codes & Css Web design

color css

<style>
 p { color: #00FF00; }

 p { color: rgb(0,255,0); }

 H1.HeaderClassName
 {
   color: #00FF00;
 }
 .AnyTagClassName
 {
   color: #00FF00;
 }
</style>

background-color css

<style>
 a { background-color: #00FF00; }

 a { background-color: rgb(0,255,0); }

 div.DivClassName
 {
   background-color: #00FF00;
 }
 .BgClassName
 {
   background-color: #00FF00;
 }
</style>

border-color css

<style>
 span { border-color: #00FF00; }

 span { border-color: rgb(0,255,0); }

 td.TdClassName
 {
   border-color: #00FF00;
 }
 .TagClassName
 {
   border-color: #00FF00;
 }
</style>