3B444B Arsenic: Hex Color Code
Color-Conversion
The hexadecimal value of the color #3b444b is made up of the RGB values of (59 ,68 ,75) and is commonly known as Arsenic. The red value is 59, the green value is 68, and the blue value is 75. This color has a hue of 206, saturation of 11, and a lightness value of26 when represented in HSL. In four color CMYK, the color has a process value of 21, 9, 0, and 71. The web safe color of #3b444b is #3b434a. Overall, the color #3b444b is predominantly astronaut blue.
Variations
This section aims to generate accurate tints (created by adding pure white) and shades (created by adding pure black) of the chosen color in increments of 10%.
Shaders
#3B444B
#343C43
#2E353A
#272D32
#21262A
#1A1E21
#141719
#0D0F11
#070808
#000000
Tints
#3B444B
#51595F
#676E73
#7C8287
#92979B
#A8ACAF
#BEC1C3
#D3D5D7
#E9EAEB
#FFFFFF
Color Combinations
Different color harmonies can evoke different moods, and it can be helpful to use them as a starting point for brainstorming color combinations. By exploring different color harmonies, you can identify colors that work well together and create a cohesive color palette for your project.
Color Complementary
#3B434A
#4A413B
Color Split Complementary
#3B434A
#4A3B3C
Color Triadic
#3B434A
#4A3B43
#434A3B
Color Analogous
#3B434A
#3B3C4A
#413B4A
Color Monochromatic
#3B434A
#4E5961
#606E78
#73838F
#8B98A2
#A2ACB4
#B9C1C7
#D0D6DA
#E8EAEC
Color Preview
Developer
Tailwind
//tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'astronaut-blue': '#3b444b',
},
}
},
}
//tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
'astronaut-blue': {
100: '#8b98a2',
200: '#73838f',
300: '#606e78',
400: '#4e5961',
500: '#3b434a',
600: '#3b444b',
700: '#343c43',
800: '#2e353a',
900: '#272d32',
},
},
}
},
}
CSS
//global.css
.mybgcolor {background-color:#3b444b; }
.myforecolor {color:#3b444b; }
.mybordercolor {border:3px solid #3b444b;}
//index.html
<p style="color:#3b444b;">Text here</p>
//index.html
<div style="background-color:#3b444b;">content here</div>
//index.html
<div style="border: 2px solid #3b444b;">content here</div>
//index.html
<p style="text-shadow: 4px 4px 2px #3b444b">Text here</p>
//index.html
<div style="-moz-box-shadow: 1px 1px 3px 2px #3b444b;
-webkit-box-shadow: 1px 1px 3px 2px #3b444b;
box-shadow: 1px 1px 3px 2px #3b444b;">
Content here</div>