From 1b2ccc0f441caf2ee04ccebf2ea7c1cd5005c329 Mon Sep 17 00:00:00 2001 From: LrxGaelle Date: Wed, 17 Apr 2024 16:50:29 +0200 Subject: [PATCH] documentation: Update neutral colors (#352) --- .../Guidelines/Colors/js/neutralColors.js | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/src/web/views/Guidelines/Colors/js/neutralColors.js b/src/web/views/Guidelines/Colors/js/neutralColors.js index 2b0849b0..19081575 100644 --- a/src/web/views/Guidelines/Colors/js/neutralColors.js +++ b/src/web/views/Guidelines/Colors/js/neutralColors.js @@ -11,36 +11,36 @@ export default Object.freeze([ textcolor: "#ffffff", }, { - name: "Neutral 100", + name: "Neutral Lighter", hex: "#f0f5ff", rgb: "240, 245, 255", - css: "var(--color-neutral-100)", - background: "bg-neutral-100", - color: "color-neutral-100", - fill: "fill-neutral-100", - stroke: "stroke-neutral-100", + css: "var(--color-neutral-lighter)", + background: "bg-neutral-lighter", + color: "color-neutral-lighter", + fill: "fill-neutral-lighter", + stroke: "stroke-neutral-lighter", textcolor: "#2f374a", }, { - name: "Neutral 400", + name: "Neutral Light", hex: "#3375dd", rgb: "51, 117, 221", - css: "var(--color-neutral-400)", - background: "bg-neutral-400", - color: "color-neutral-400", - fill: "fill-neutral-400", - stroke: "stroke-neutral-400", + css: "var(--color-neutral-light)", + background: "bg-neutral-light", + color: "color-neutral-light", + fill: "fill-neutral-light", + stroke: "stroke-neutral-light", textcolor: "#ffffff", }, { - name: "Neutral 600", + name: "Neutral Dark", hex: "#194891", rgb: "25, 72, 145", - css: "var(--color-neutral-600)", - background: "bg-neutral-600", - color: "color-neutral-600", - fill: "fill-neutral-600", - stroke: "stroke-neutral-600", + css: "var(--color-neutral-dark)", + background: "bg-neutral-dark", + color: "color-neutral-dark", + fill: "fill-neutral-dark", + stroke: "stroke-neutral-dark", textcolor: "#ffffff", }, ]);