COLOR #000001

HEX: #000001
RGB: (0,0,1)

Color info

#000001 contains only blue color. Web safe color of #000001 is #000000 (or #000).

RGB color model

#000001 color RGB value is (0,0,1).

  • red value is 0;
  • green value is 0;
  • blue value is 1.
RGB:
(0,0,1)
(0%,0%,0%)

RGB channels and saturation

R 0 of 255 = 0%
G 0 of 255 = 0%
B 1 of 255 = 0%

0
0
1

R + G + B ~ 0%. #000001 is dark color.

Portions of RGB colors in percentages

R + G + B =
0 + 0 + 1 = 1 (100%)
R 0 of 1 ~ 0%
G 0 of 1 ~ 0%
B 1 of 1 ~ 100%

%100

CMYK color model

#000001 color CMYK value is (100,100,0,100).

  • cyan value is 100.00%
  • magenta value is 100.00%
  • yellow value is 0.00%
  • key color value is 99.61%
CMYK:
(100,100,0,100)
C100M100Y0K100 
(100%,100%,0%,100%)
(1.00/1.00/0.00/1.00)	

CMYK percentages

%100
%100
%0
%99.61

Codes

Color #000001 in popluar color models

000001
RGB001
HSL240°100.00%0.20%
HSB/HSV240°100.00%0.39%
CMYK100.00%100.00%0.00%
99.61%

Color #000001 in popluar number systems.

HEX000001
Decimal001
Binary001
Octal001

Shades and tints

Tints of #000001

#000001
(0,0,1)
#171718
(23,23,24)
#2E2E2F
(46,46,47)
#454546
(69,69,70)
#5C5C5D
(92,92,93)
#737374
(115,115,116)
#8A8A8B
(138,138,139)
#A1A1A2
(161,161,162)
#B8B8B9
(184,184,185)
#CFCFD0
(207,207,208)
#E6E6E7
(230,230,231)
#FFFFFF
(255,255,255)

CSS3 styles

Examples of css and html codes for elements with #000001 color. Also use rgb(0,0,1) instead hex code.

Text Font Color

.myTextColor { color: #000001; }

<p style="color:#000001">This sample text font color is #000001.</p>

This text font color is #000001.


Background Color

.myBgColor { background-color: #000001; }

<div style="background-color:#000001">Inner text</div>

This div background color is #000001.


Border color

.myBorderColor { border: 1px solid #000001; }

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

This div border color is #000001.


Opacity

.myOpacity80 { color: #000001; opacity: 0.8; }

<p style="color:#000001;opacity:0.8;">80%</p>

Text with #000001 color and opacity 100% | 80% | 50% | 30%.

Background with opacity value 100%.

Background with opacity value 80%.

Background with opacity value 50%.

Background with opacity value 30%.

Text shadow color

.textShadow {text-shadow: 3px 3px 1px #000001;}

<p style="text-shadow: 3px 3px 1px #000001">Text here.</p>

This text has shadow with #000001 color.

.textShadow {text-shadow: 3px 3px 1px #000001, 3px 3px 1px red;}

<p style="text-shadow: 3px 3px 1px #000001, 5px 5px 20px red">Text here.</p>

This text has shadow with #000001 primary color and red secondary color.


Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#000001, Direction=45, Strength=4)}

<p style="filter: Shadow(Color=#000001, Direction=45, Strength=4)">Text</p>

This text has shadow with #000001 and red colors in old Internet Explorer.


Div box shadow color

/* css code */
.divShadow
{
  -moz-box-shadow:	1px 1px 3px 2px #000001;
  -webkit-box-shadow:	1px 1px 3px 2px #000001;
  box-shadow:		1px 1px 3px 2px #000001;
}

/* html code with inline style */
<div style="-moz-box-shadow: 1px 1px 3px 2px #000001;
-webkit-box-shadow: 1px 1px 3px 2px #000001;
box-shadow:1px 1px 3px 2px #000001;">
Div content here</div>
This div box has shadow with color #000001.

Preview

Color preview on black background

This text has color #000001 on black background.


Color preview on white background

This text has color #000001 on white background.



Black color preview on #000001 background

This text has black color on #000001 background.


White color preview on #000001 background

This text has white color on #000001 background.