Skip to content

Commit da4f2c5

Browse files
Make heatmap shades linear (#13500)
Previously, shades were 50%, 60%, 70%, 80%, 100%. Make them linearily increasing instead at 60%, 70%, 80%, 90%, 100%. Co-authored-by: techknowlogick <[email protected]>
1 parent 13b8c0b commit da4f2c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/components/ActivityHeatmap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ export default {
2828
isLoading: true,
2929
colorRange: [
3030
'var(--color-secondary-alpha-70)',
31-
'var(--color-primary-alpha-50)',
3231
'var(--color-primary-alpha-60)',
3332
'var(--color-primary-alpha-70)',
3433
'var(--color-primary-alpha-80)',
34+
'var(--color-primary-alpha-90)',
3535
'var(--color-primary)',
3636
],
3737
endDate: new Date(),

0 commit comments

Comments
 (0)