Mughal Green

HEX: #306030 | Modern Palette

On White
7.39:1
PASS
On Black
2.84:1
FAIL

Color Specifications

HEX
#306030
RGB
48, 96, 48
HSL
120°, 50% ,37%
CMYK
50, 0, 50, 62.35

About Mughal Green

Mughal Green (#306030) is a color with RGB(48, 96, 48) and HSL(120°, 50%, 37.65%). It is commonly associated with Earthy moods. In design, it fits Cool styles and is suitable for Text, Button, Logo. Its complementary color is #603060, which creates strong contrast. Its triadic palette includes #303060 and #603030. The name comes from Mughal Green (English).

  • HEX: #306030
  • RGB: 48, 96, 48
  • HSL: 120°, 50%, 37.65%
  • Mood: Earthy
  • Style: Cool
  • Use case: Text, Button, Logo
  • Complementary color: #603060
  • Triadic colors: #303060, #603030
  • The name comes from Mughal Green (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Mughal Green #306030 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
 
 
 
 
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
 
 
 
 
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
 
 
 
 
 
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.
 
 
 
 
 

Color Harmonies

Mughal Green #306030 pairs with #603060 as its complementary color, and #303060 and #603030 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

MUGHAL GREEN
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

MUGHAL GREEN
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

MUGHAL GREEN
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

MUGHAL GREEN
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

MUGHAL GREEN
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

MUGHAL GREEN

Shades & Tints

The shade and tint range for Mughal Green #306030 moves from dark #091109 tones through the base color to lighter #EEF6EE tones, making it useful for depth, hierarchy, and background variation.

MUGHAL GREEN

Color Characteristics

Mood
Earthy
Style
Cool
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #555532
Protanopia #5C5C30
Tritanopia #395C5C
Achromatopsia #565656

Frequently Asked Questions

Mughal Green (#306030) is a color with RGB(48, 96, 48) and HSL(120°, 50%, 37.65%).

#306030 pairs strongly with #603060 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#306030 is suitable for Text, Button, Logo and works well with Cool styles.

#306030 is commonly associated with Earthy.

The name Mughal Green is linked to Mughal Green from English, meaning A shade of green associated with the Mughal Empire..

Name, History & Etymology

Origin Word Mughal Green
Meaning A shade of green associated with the Mughal Empire.
Language English
First Recorded Use 20th Century

History

The Mughal Empire (1526-1857) was a powerful Islamic empire that ruled over much of the Indian subcontinent. Green holds significant cultural and religious importance in Islam, often symbolizing paradise, nature, and life. During the Mughal era, green was extensively used in various forms of art, architecture, textiles, and miniature paintings. It was derived from natural pigments and dyes. The modern naming of 'Mughal Green' for a specific hex code reflects an attempt to categorize and reference colors reminiscent of historical periods and styles. The hex code #306030 represents a deep, somewhat muted green, which aligns with the earthy and rich tones often found in historical pigments.

First Recorded Use

The specific term 'Mughal Green' as a named color, particularly with a hex code, is a modern designation. However, the use of green as a significant color in Mughal art and architecture dates back to the empire's founding in the 16th century.

Cultural Associations

Green is a highly revered color in Islamic culture, often associated with the Prophet Muhammad, paradise (Jannah), and fertility. In Mughal art and architecture, green was used to depict lush gardens, natural landscapes, and as a decorative element in mosques, tombs, and palaces. Examples include the intricate tile work and pietra dura inlays found in structures like the Taj Mahal (though white marble dominates, green accents are present in surrounding elements and gardens) and various forts and tombs across India. The color evokes a sense of royalty, prosperity, and natural beauty, reflecting the aesthetic sensibilities of the Mughal emperors.

Similar Named Colors

Hunter Green #355E3B ΔE 3.56
Cadmium Green #006B3C ΔE 6.12
Dartmouth Green #00693E ΔE 6.16
Lincoln Green #195905 ΔE 6.92

Code Snippets

/* Background */
.element {
    background-color: #306030;
}

/* Text */
.element {
    color: #306030;
}

/* Border */
.element {
    border: 1px solid #306030;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #306030,
        #903090
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #306030,
        #903090
    );
}

// SCSS variable
$mughal-green: #306030;

// With RGB channels (useful for rgba() usage)
$mughal-green-r: 48;
$mughal-green-g: 96;
$mughal-green-b: 48;

// Usage
.element {
    background-color: $mughal-green;
    color: rgba($mughal-green-r, $mughal-green-g, $mughal-green-b, 0.8);
}