diff --git a/CONTRIBUTORS b/CONTRIBUTORS index b5dfe1d53..3f6a37ba8 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -236,6 +236,7 @@ Marvin Kopf Kevin Nakamura Bradley Szoke jcznk +Thomas Rixen ******************** diff --git a/ts/routes/graphs/reviews.ts b/ts/routes/graphs/reviews.ts index fd3786b5f..ed0e07f8c 100644 --- a/ts/routes/graphs/reviews.ts +++ b/ts/routes/graphs/reviews.ts @@ -18,8 +18,8 @@ import { bin, cumsum, curveBasis, - interpolateBlues, interpolateGreens, + interpolateOranges, interpolatePurples, interpolateReds, max, @@ -181,7 +181,7 @@ export function renderReviews( const reds = scaleSequential((n) => interpolateReds(cappedRange(n)!)).domain( x.domain() as any, ); - const blues = scaleSequential((n) => interpolateBlues(cappedRange(n)!)).domain( + const oranges = scaleSequential((n) => interpolateOranges(cappedRange(n)!)).domain( x.domain() as any, ); const purples = scaleSequential((n) => interpolatePurples(cappedRange(n)!)).domain( @@ -195,7 +195,7 @@ export function renderReviews( case BinIndex.Young: return lighterGreens; case BinIndex.Learn: - return blues; + return oranges; case BinIndex.Relearn: return reds; case BinIndex.Filtered: