color details

Color Details
#191970 Color Hex

#191970 color RGB value is (1, 145, 151).
#191970 hex color red value is 1, green value is 145, and blue value is 151.
Cylindrical-coordinate representations (HSL) of color #191970 hue: 182.4, saturation: 0.99 and lightness: 0.3.

The process color (four-color CMYK) of #191970 color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #191970 is #ff9999. Color #191970 contains mainly RED.

Color Spaces
Color spaces of #191970Value
RGB25, 25, 112
HSL0.67, 0.64, 0.27
HSV240°, 78°, 44°
XYZ3.67, 2.07, 15.53
Base Numbers
Base Red Green Blue
Binary 11001 11001 1110000
Octal 31 31 160
Decimal 25 25 112
Hex 19 19 70

RGB Percentages for Color #191970

15.43%
15.43%
69.14%

CMYK Percentages of the Color #191970

77.68%
77.68%
56.08%
CSS Codes for Color #191970
.mybgColor {background-color: #191970;}
.myforeColor {color: #191970;}
.myborderColor {border:3px solid #191970;}
Text Font Color #191970

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

This sample text is styled with the font color #191970. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,

Background Color #191970

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

The background color of this div is #191970
Border Color #191970

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

The border color of this div is #191970
Css3 Examples
            .textShadowRgb {
                text-shadow: 4px 4px 2px rgba(25, 25, 112, 0.8);            }
            .textShadowHex {
                text-shadow: 4px 4px 2px #191970;            }
            .divShadow {
                -moz-box-shadow: 1px 1px 3px #191970;
-webkit-box-shadow: 1px 1px 3px #191970;
box-shadow: 1px 1px 3px #191970;            }
            
Text Shadow Using RGB Values

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

This text has a shadow with RGB values.

Text Shadow Using Hex Values

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

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

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

This div box has a shadow with a specified color. #191970
Scroll to Top