Saltar al contenido

La paleta Nephrite

Tres sabores, diez neutros con tinte jade y nueve acentos con nombres de minerales. Cada acento supera 4.5:1 de contraste sobre su fondo.

Acentos

Neutros

Elige un color para copiar su hex.

En un editor
// Paint the editor with a flavorimport { flavors } from "./palette";export function accent(name: string, depth = 3) {  const shade = flavors.forest[name];  return `${shade}/${depth}`;}
En una terminal

~/nephrite main $ git status --short

M palette.json

D legacy.css

?? ports/terminal.toml

Úsala

Copia el sabor como variables CSS o JSON y empieza un port.

Ver las apps
/* 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;
}