#1d2a30 hex color information.
RGB value of #1d2a30 is (29,42,48)
Change page background color to #1d2a30
| Reset
| RGB | 29 | 42 | 48 |
|---|---|---|---|
| HSL | 0.55 | 0.25 | 0.15 |
| HSV | 199° | 40° | 19° |
| CMYK | 0.40 | 0.13 | 0.00 0.81 |
| XYZ | 1.8682 | 2.1305 | 3.1091 |
| Yxy | 2.1305 | 0.2628 | 0.2997 |
| Hunter Lab | 14.5962 | -2.6968 | -2.4118 |
| CIE-Lab | 16.1577 | -3.6736 | -5.6857 |
#1d2a30 hex color red value is 29, green value is 42 and the blue value of its RGB is 42. Cylindrical-coordinate representations (also known as HSL) of color #1d2a30 hue: 0.55 , saturation: 0.25 and the lightness value of 1d2a30 is 0.15.
The process color (four color CMYK) of #1d2a30 hex color is 0.40, 0.13, 0.00, 0.81. Web safe color of #1d2a30 is #333333
Color #1d2a30 contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00011101 | 00101010 | 00110000 |
| Octal | 35 | 52 | 60 |
| Decimal | 29 | 42 | 48 |
| Hexadecimal | 1D | 2A | 30 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#1d2a30; }
.myforecolor {color:#1d2a30; }
.mybordercolor {border:3px solid #1d2a30; }
This sample text font color is #1d2a30
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.
<p style="color:#1d2a30">Text here</p>
This div background color is #1d2a30
<div style="background-color:#1d2a30">
Div content here</div>
This div border color is #1d2a30
<div style="border:3px solid #1d2a30">
Div here</div>
| #1d2a30 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(29,42,48, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #1d2a30;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #1d2a30;
-webkit-box-shadow: 1px 1px 3px 2px #1d2a30;
box-shadow: 1px 1px 3px 2px #1d2a30;
}
<p style="text-shadow: 4px 4px 2px rgba(29,42,48, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #1d2a30">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #1d2a30
<div style="-moz-box-shadow: 1px 1px 3px 2px #1d2a30; -webkit-box-shadow: 1px 1px 3px 2px #1d2a30; box-shadow: 1px 1px 3px 2px #1d2a30;">
Div content here</div>