Skip to content

Commit

Permalink
darker lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Kr0nox committed Dec 6, 2023
1 parent 9fcba51 commit b359120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report-viewer/src/utils/ColorUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const graphColors = {
pointFill: `rgba(${graphRGB.red}, ${graphRGB.green}, ${graphRGB.blue}, 1)`,
additionalLine: computed(() => {
const alpha = 0.3

Check warning on line 100 in report-viewer/src/utils/ColorUtils.ts

View workflow job for this annotation

GitHub Actions / check

'alpha' is assigned a value but never used
return store().uiState.useDarkMode ? `rgba(200, 200, 200, ${alpha})` : `rgba(0, 0, 0, ${alpha})`
return store().uiState.useDarkMode ? `rgba(200, 200, 200, 0.3)` : `rgba(0, 0, 0, 0.5)`
}),
contentFillAlpha(alpha: number) {
return `rgba(${graphRGB.red}, ${graphRGB.green}, ${graphRGB.blue}, ${alpha})`
Expand Down

0 comments on commit b359120

Please sign in to comment.