From f546160794002b33d27efbdc86efd506cec3afef Mon Sep 17 00:00:00 2001 From: Andrew Fahrenholtz Date: Mon, 25 Sep 2023 04:32:42 -0500 Subject: [PATCH] fix(graph): match text color with icon color on ZWave Graph legend (#3299) --- src/components/custom/ZwaveGraph.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/custom/ZwaveGraph.vue b/src/components/custom/ZwaveGraph.vue index 3417fe8c9e9..7565c97674a 100644 --- a/src/components/custom/ZwaveGraph.vue +++ b/src/components/custom/ZwaveGraph.vue @@ -400,22 +400,22 @@ export default { }, { color: '#00BCD4', - textColor: '#006064', + textColor: '#00BCD4', text: '1 hop', }, { color: '#2DCC70', - textColor: '#1D8548', + textColor: '#2DCC70', text: '2 hops', }, { color: '#F1C40F', - textColor: '#D25400', + textColor: '#F1C40F', text: '3 hops', }, { color: '#E77E23', - textColor: '#D25400', + textColor: '#E77E23', text: '4 hops', }, {