← Holographic Silver
Terminal Green →

Dark Mode Gray - #1A1A1A - Color Chart : Shades, Tints & More

RGB Value:
CMYK Value:
HSV Value:
HSL Value:

1. Background Colors

Set background colors for elements using the background-color property.

Black Backgroud With #1A1A1A

#1A1A1A

.bg {
    background-color: #1A1A1A;
}
White Backgroud With #1A1A1A

#1A1A1A

.bg {
    background-color: #1A1A1A;
}

2. Text Colors - Typography

Change text color using the color property.

Heading (H1-H6)

Color Bold H1

h1 {
    color: #1A1A1A;
}

Color Bold H2

h2 {
    color: #1A1A1A;
}

Color Bold H3

h3 {
    color: #1A1A1A;
}

Color Bold H4

h4 {
    color: #1A1A1A;
}
Color Bold H5
h5 {
    color: #1A1A1A;
}
Color Bold H6
h6 {
    color: #1A1A1A;
}

Paragraph

Lorem ipsum dolor sit amet, consectetur adipiscing 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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.

p {
    color: #1A1A1A;
}

Blockquote

"Lorem ipsum dolor sit amet, consectetur adipiscing elit." – Anonymous
blockquote {
    color: #1A1A1A;
}

Link

For more, visit colorbold.

a {
    color: #1A1A1A;
}

3. Border Colors

Apply colors to borders using the border property.

Solid
.box-solid {
  border: 5px solid #1A1A1A; 
  padding: 20px;
}
Dotted
.box-dotted {
  border: 5px dotted #1A1A1A; 
  padding: 20px;
}
Dashed
.box-dashed {
  border: 5px dashed #1A1A1A; 
  padding: 20px;
}
Double
.box-double {
  border: 5px double #1A1A1A; 
  padding: 20px;
}
Groove
.box-groove {
  border: 5px groove #1A1A1A; 
  padding: 20px;
}
Ridge
.box-ridge {
  border: 5px ridge #1A1A1A; 
  padding: 20px;
}
Inset
.box-inset {
  border: 5px inset #1A1A1A; 
  padding: 20px;
}
Outset
.box-outset {
  border: 5px outset #1A1A1A; 
  padding: 20px;
}

4. Button Styling

Create colorful buttons by styling their background, text, and borders.

.themebutton {
 background-color: #1A1A1A;
 color:#fff;
 border-radius: 5px;
}
.themebutton {
 background-color: transparent;
 border: 2px solid #1A1A1A;
 color: #1A1A1A;
}
.themebutton {
 background-color: #1A1A1A; 
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 transition: box-shadow 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

Card Component Preview

Card Title

This is a card with a border in the primary color.

Card Title

This is a card with a border in the primary color.

Card Title

This is a card with a border in the primary color.