The Nephrite palette
Three flavors, ten jade-tinted neutrals and nine accents named after minerals. Every accent clears 4.5:1 contrast on its base.
Accents
Neutrals
Select a color to copy its hex.
// Paint the editor with a flavorimport { flavors } from "./palette";export function accent(name: string, depth = 3) { const shade = flavors.forest[name]; return `${shade}/${depth}`;}~/nephrite main $ git status --short
M palette.json
D legacy.css
?? ports/terminal.toml
/* Nephrite Forest */
:root {
--nephrite-crust: #050e09;
--nephrite-mantle: #09150e;
--nephrite-base: #0d1c14;
--nephrite-surface0: #192820;
--nephrite-surface1: #25342c;
--nephrite-surface2: #324139;
--nephrite-overlay0: #59675f;
--nephrite-overlay1: #76847c;
--nephrite-subtext: #b4c1ba;
--nephrite-text: #e0ebe5;
--nephrite-garnet: #ffa09c;
--nephrite-carnelian: #fba773;
--nephrite-citrine: #d9bb5c;
--nephrite-jade: #4dbf74;
--nephrite-mint: #5ed7b5;
--nephrite-lagoon: #43d5dc;
--nephrite-sapphire: #89c3fe;
--nephrite-amethyst: #d0aafc;
--nephrite-rhodonite: #f99dc6;
}