From 02557c0650041732596813c1b743d552568e7197 Mon Sep 17 00:00:00 2001 From: rogermparent Date: Wed, 25 May 2022 17:55:56 -0400 Subject: [PATCH 1/2] Use charts colors for params and metrics headers --- extension/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extension/package.json b/extension/package.json index f7b909441b..d6f058652e 100644 --- a/extension/package.json +++ b/extension/package.json @@ -54,16 +54,16 @@ "id": "dvc.metrics", "description": "Color to indicate a DVC metric column in the experiments table", "defaults": { - "dark": "#fbd38d", - "light": "#fbd38d" + "dark": "charts.yellow", + "light": "charts.yellow" } }, { "id": "dvc.params", "description": "Color to indicate a DVC param column in the experiments table", "defaults": { - "dark": "#90cdf4", - "light": "#90cdf4" + "dark": "charts.blue", + "light": "charts.blue" } }, { From 36987af19644ec9cbe19ec5ebb8927f0070702e2 Mon Sep 17 00:00:00 2001 From: rogermparent Date: Wed, 25 May 2022 20:25:40 -0400 Subject: [PATCH 2/2] Use static colors --- extension/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extension/package.json b/extension/package.json index d6f058652e..d764543ee5 100644 --- a/extension/package.json +++ b/extension/package.json @@ -54,16 +54,16 @@ "id": "dvc.metrics", "description": "Color to indicate a DVC metric column in the experiments table", "defaults": { - "dark": "charts.yellow", - "light": "charts.yellow" + "dark": "#fbd38d", + "light": "#714904" } }, { "id": "dvc.params", "description": "Color to indicate a DVC param column in the experiments table", "defaults": { - "dark": "charts.blue", - "light": "charts.blue" + "dark": "#90cdf4", + "light": "#0b496f" } }, {