From 58986e0a431435106765a34e8870d274019664a1 Mon Sep 17 00:00:00 2001 From: Brandon Clayton <bclayton@usgs.gov> Date: Fri, 18 Oct 2024 10:14:52 -0600 Subject: [PATCH] invert color scale --- styles/_GraphVariables.scss | 37 ++++++++++++------------------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/styles/_GraphVariables.scss b/styles/_GraphVariables.scss index 0308f14..f154133 100644 --- a/styles/_GraphVariables.scss +++ b/styles/_GraphVariables.scss @@ -9,28 +9,15 @@ $selectedGraphColor: #444; * http://colorbrewer2.org/#type=diverging&scheme=RdYlBu&n=11 */ -$graphColor0: #a50026; -$graphColor1: #d73027; -$graphColor2: #f46d43; -$graphColor3: #fdae61; -$graphColor4: #fee090; -$graphColor5: #ffffbf; -$graphColor6: #e0f3f8; -$graphColor7: #abd9e9; -$graphColor8: #74add1; -$graphColor9: #4575b4; -$graphColor10: #313695; -$graphColor11: #081d58; - -$curveColor0: #1f77b4; -$curveColor1: #ff7f0e; -$curveColor2: #2ca02c; -$curveColor3: #d62728; -$curveColor4: #9467bd; -$curveColor5: #e377c2; -$curveColor6: #bcbd22; -$curveColor7: #17becf; -$curveColor8: #aec7e8; -$curveColor9: #ffbb78; -$curveColor10: #98df8a; -$curveColor11: #ff9896; +$graphColor0: #081d58; +$graphColor1: #313695; +$graphColor2: #4575b4; +$graphColor3: #74add1; +$graphColor4: #abd9e9; +$graphColor5: #e0f3f8; +$graphColor6: #ffffbf; +$graphColor7: #fee090; +$graphColor8: #fdae61; +$graphColor9: #f46d43; +$graphColor10: #d73027; +$graphColor11: #a50026; -- GitLab