COLOR #000003

HEX: #000003
RGB: (0,0,3)

Color info

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

RGB color model

#000003 color RGB value is (0,0,3).

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

RGB channels and saturation

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

0
0
3

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

Portions of RGB colors in percentages

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

%100

CMYK color model

#000003 color CMYK value is (100,100,0,99).

  • cyan value is 100.00%
  • magenta value is 100.00%
  • yellow value is 0.00%
  • key color value is 98.82%
CMYK:
(100,100,0,99)
C100M100Y0K99 
(100%,100%,0%,99%)
(1.00/1.00/0.00/0.99)	

CMYK percentages

%100
%100
%0
%98.82

Codes

Color #000003 in popluar color models

000003
RGB003
HSL240°100.00%0.59%
HSB/HSV240°100.00%1.18%
CMYK100.00%100.00%0.00%
98.82%

Color #000003 in popluar number systems.

HEX000003
Decimal003
Binary0011
Octal003

Shades and tints

Tints of #000003

#000003
(0,0,3)
#171719
(23,23,25)
#2E2E2F
(46,46,47)
#454545
(69,69,69)
#5C5C5B
(92,92,91)
#737371
(115,115,113)
#8A8A87
(138,138,135)
#A1A19D
(161,161,157)
#B8B8B3
(184,184,179)
#CFCFC9
(207,207,201)
#E6E6DF
(230,230,223)
#FFFFFF
(255,255,255)

CSS3 styles

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

Text Font Color

.myTextColor { color: #000003; }

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

This text font color is #000003.


Background Color

.myBgColor { background-color: #000003; }

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

This div background color is #000003.


Border color

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

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

This div border color is #000003.


Opacity

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

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

Text with #000003 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 #000003;}

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

This text has shadow with #000003 color.

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

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

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


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

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

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


Div box shadow color

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

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

Preview

Color preview on black background

This text has color #000003 on black background.


Color preview on white background

This text has color #000003 on white background.



Black color preview on #000003 background

This text has black color on #000003 background.


White color preview on #000003 background

This text has white color on #000003 background.