Adjustments to export plot color

This commit is contained in:
Gunnar Skjold 2023-12-25 19:43:25 +01:00
parent cd446f8cb8
commit 64870cf9ca
3 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

@ -37,7 +37,7 @@
title2: exp.toFixed(2) + ' kWh',
value2: exp*10,
color: dark ? '#5c2da5' : '#7c3aed',
color2: '#37829E'
color2: dark ? '#27728e' : '#37829e',
});
min = Math.max(min, exp*10);
max = Math.max(max, imp*10);
@ -60,7 +60,7 @@
title2: exp.toFixed(2) + ' kWh',
value2: exp*10,
color: dark ? '#5c2da5' : '#7c3aed',
color2: '#37829E'
color2: dark ? '#27728e' : '#37829e',
});
min = Math.max(min, exp*10);
max = Math.max(max, imp*10);

View File

@ -40,7 +40,7 @@
title2: exp.toFixed(2) + ' kWh',
value2: exp,
color: dark ? '#5c2da5' : '#7c3aed',
color2: '#37829E'
color2: dark ? '#27728e' : '#37829e',
});
min = Math.max(min, exp);
max = Math.max(max, imp);
@ -62,7 +62,7 @@
title2: exp.toFixed(2) + ' kWh',
value2: exp,
color: dark ? '#5c2da5' : '#7c3aed',
color2: '#37829E'
color2: dark ? '#27728e' : '#37829e',
});
min = Math.max(min, exp);
max = Math.max(max, imp);