diff --git a/packages/grafana-ui/src/components/BarGauge/BarGauge.tsx b/packages/grafana-ui/src/components/BarGauge/BarGauge.tsx index adec77c3170..4b1c9e75e7a 100644 --- a/packages/grafana-ui/src/components/BarGauge/BarGauge.tsx +++ b/packages/grafana-ui/src/components/BarGauge/BarGauge.tsx @@ -81,7 +81,7 @@ export class BarGauge extends PureComponent { .toRgbString(); } else { return tinycolor(color) - .setAlpha(0.65) + .setAlpha(0.7) .toRgbString(); } } @@ -197,6 +197,7 @@ export class BarGauge extends PureComponent { backgroundColor: cellColor, marginRight: '4px', height: `${height}px`, + borderRadius: '2px', }; cells.push(
);