Android Green
HEX: #A4C639 | Modern Palette
Color Specifications
#A4C639
164, 198, 57
74°, 55% ,50%
17, 0, 71, 22
About Android Green
Android Green (#A4C639) is a color with RGB(164, 198, 57) and HSL(74.5°, 55.3%, 50%). In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #5B39C6, which creates strong contrast. Its triadic palette includes #39A4C6 and #C639A4. The name comes from Android Green (English).
- HEX: #A4C639
- RGB: 164, 198, 57
- HSL: 74.5°, 55.3%, 50%
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #5B39C6
- Triadic colors: #39A4C6, #C639A4
- The name comes from Android Green (English).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #A4C639 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color #a4c639, commonly known as 'Android Green,' was established as a primary brand color for Google's Android mobile operating system. It became instantly recognizable with the introduction of the Android robot logo (often referred to as 'Bugdroid') and the overall visual identity of the platform. Its use has been consistent across Android's branding, marketing materials, and user interface elements, though specific UI implementations might vary slightly over different Android versions.
First Recorded Use
Circa 2007-2008 (with the public launch and branding of the Android mobile operating system)
Cultural Associations
Android Green is strongly associated with technology, innovation, and the open-source nature of the Android platform. It has become an iconic color in the tech world, instantly signaling the Android brand to consumers globally. The friendly and approachable nature of the Android robot, often rendered in this green, contributes to the positive perception of the color.
Code Snippets
/* Background */
.element {
background-color: #A4C639;
}
/* Text */
.element {
color: #A4C639;
}
/* Border */
.element {
border: 1px solid #A4C639;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A4C639,
#5B39C6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A4C639,
#5B39C6
);
}
// SCSS variable
$android-green: #A4C639;
// With RGB channels (useful for rgba() usage)
$android-green-r: 164;
$android-green-g: 198;
$android-green-b: 57;
// Usage
.element {
background-color: $android-green;
color: rgba($android-green-r, $android-green-g, $android-green-b, 0.8);
}