Skip to content

Commit

Permalink
Corrected colors of DM (#2915)
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox authored Jan 22, 2025
1 parent 3d69ed4 commit d6752e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/dm-gui-components/src/DeviceStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,19 @@ export default function DeviceStatus(props: DeviceStatusProps): React.JSX.Elemen

const iconStyleOK = {
fill: '#00ac00',
color: '#00ac00',
};
const iconStyleNotOK = {
fill: '#ff0000',
color: '#ff0000',
};
const iconStyleWarning = {
fill: '#ff9900',
color: '#ff9900',
};
const iconStyleUnknown = {
fill: '#8a8a8a',
color: '#8a8a8a',
};

let batteryIconTooltip: React.ReactNode = null;
Expand Down

0 comments on commit d6752e9

Please sign in to comment.