Mint green is a soft, calming hue that sits perfectly between the freshness of mint leaves and the tranquility of sea glass. If you are looking to use this specific shade in a design project, you will need to translate the visual color into a numerical format that screens and printers can understand, which means finding the precise color code.
The Definition of Mint Green in Digital Spaces
In the digital world, colors are rarely described by how they look to the human eye alone; they are defined by specific numerical coordinates. When someone asks for the color code for mint green, they are usually referring to how this shade is represented in hexadecimal (Hex), RGB (Red, Green, Blue), or HSL (Hue, Saturation, Lightness) values. These standards ensure that the exact same mint tone appears consistently on a website, in a mobile app, or within a digital document, regardless of the device being used.
Hexadecimal and RGB Values
The most common way to define mint green digitally is through the Hex code, a six-digit combination of numbers and letters prefixed by a hash symbol. For the standard web color often labeled as "Mint," the Hex code is #98FF98. This specific sequence tells the display how much red, green, and blue light to emit. If you prefer the RGB model, which is often preferred for styling in CSS, this translates to rgb(152, 255, 152). The high green value mixed with moderate red and blue creates the signature pale, airy quality of the color.

Variations and Contextual Codes
It is important to note that "mint green" is an umbrella term that covers a wide spectrum of light, desaturated greens. Depending on the context—whether you are painting a room, designing a logo, or coding a website—you might be looking for a slightly different version of the shade. The specific code you need depends entirely on the exact tone you are trying to achieve, ranging from cooler, blue-leaning versions to warmer, yellow-leaning ones.
| Shade Name | Hex Code | RGB Value |
|---|---|---|
| Mint (Standard) | #98FF98 | rgb(152, 255, 152) |
| Light Mint Green | #B2FFFC | rgb(178, 255, 252) |
| Mint Cream | #F5FFFA | rgb(245, 255, 250) |
| Pale Mint Green | #98FB98 | rgb(152, 251, 152) |
Usage in Design and Branding
Designers often turn to the color code for mint green when trying to evoke specific emotions. Because the shade is derived from nature, it carries psychological associations with freshness, renewal, and calmness. In branding, it is frequently used by companies in the wellness, food, and eco-friendly sectors to communicate cleanliness and sustainability. Using the correct Hex or RGB value ensures that these psychological triggers are activated consistently every time the brand is seen.
Application in Print and Physical Media
While digital design relies on Hex and RGB codes, physical applications like printing or painting require a different translation. For high-quality color printing, such as brochures or packaging, the color code is usually converted to the CMYK (Cyan, Magenta, Yellow, Black) model. The approximate CMYK values for a standard mint green like #98FF98 are C: 40%, M: 0%, Y: 40%, K: 0%. These percentages dictate the amount of each ink used to recreate the digital mint hue on paper.

Practical Implementation for Developers
For developers working on a website or application, implementing the color code for mint green is straightforward but requires precision. If you are styling an element to have this specific background, you would use the Hex code within your CSS stylesheet like this: background-color: #98FF98;. Alternatively, you can use the RGB format for the same visual result: background-color: rgb(152, 255, 152);. Ensuring you use the exact code prevents any discrepancies in how the brand color is perceived across different browsers and operating systems.























