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 <techknowlogick@gitea.io>
This commit is contained in:
parent
13b8c0b7ae
commit
da4f2c5979
1 changed files with 1 additions and 1 deletions
|
@ -28,10 +28,10 @@ export default {
|
|||
isLoading: true,
|
||||
colorRange: [
|
||||
'var(--color-secondary-alpha-70)',
|
||||
'var(--color-primary-alpha-50)',
|
||||
'var(--color-primary-alpha-60)',
|
||||
'var(--color-primary-alpha-70)',
|
||||
'var(--color-primary-alpha-80)',
|
||||
'var(--color-primary-alpha-90)',
|
||||
'var(--color-primary)',
|
||||
],
|
||||
endDate: new Date(),
|
||||
|
|
Reference in a new issue