aboutsummaryrefslogtreecommitdiff
path: root/modern/src/main
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2023-08-27 17:08:08 -0700
committerAnton Tananaev <anton@traccar.org>2023-08-27 17:08:08 -0700
commitd257aa2fb592c8def4ff40630914127575b87062 (patch)
treed55efd2bd145a9565bb4bc0d1f1f336bbf53dd2a /modern/src/main
parent778d626e5ca58f62b75ef070c5c347afa89a6de4 (diff)
downloadtrackermap-web-d257aa2fb592c8def4ff40630914127575b87062.tar.gz
trackermap-web-d257aa2fb592c8def4ff40630914127575b87062.tar.bz2
trackermap-web-d257aa2fb592c8def4ff40630914127575b87062.zip
Streamline theme palette
Diffstat (limited to 'modern/src/main')
-rw-r--r--modern/src/main/DeviceRow.jsx30
1 files changed, 15 insertions, 15 deletions
diff --git a/modern/src/main/DeviceRow.jsx b/modern/src/main/DeviceRow.jsx
index 44da58f9..82ffb1b5 100644
--- a/modern/src/main/DeviceRow.jsx
+++ b/modern/src/main/DeviceRow.jsx
@@ -33,17 +33,17 @@ const useStyles = makeStyles((theme) => ({
fontWeight: 'normal',
lineHeight: '0.875rem',
},
- positive: {
- color: theme.palette.colors.positive,
+ success: {
+ color: theme.palette.success.main,
},
- medium: {
- color: theme.palette.colors.medium,
+ warning: {
+ color: theme.palette.warning.main,
},
- negative: {
- color: theme.palette.colors.negative,
+ error: {
+ color: theme.palette.error.main,
},
neutral: {
- color: theme.palette.colors.neutral,
+ color: theme.palette.neutral.main,
},
}));
@@ -98,7 +98,7 @@ const DeviceRow = ({ data, index, style }) => {
{position.attributes.hasOwnProperty('alarm') && (
<Tooltip title={`${t('eventAlarm')}: ${formatAlarm(position.attributes.alarm, t)}`}>
<IconButton size="small">
- <ErrorIcon fontSize="small" className={classes.negative} />
+ <ErrorIcon fontSize="small" className={classes.error} />
</IconButton>
</Tooltip>
)}
@@ -106,7 +106,7 @@ const DeviceRow = ({ data, index, style }) => {
<Tooltip title={`${t('positionIgnition')}: ${formatBoolean(position.attributes.ignition, t)}`}>
<IconButton size="small">
{position.attributes.ignition ? (
- <EngineIcon width={20} height={20} className={classes.positive} />
+ <EngineIcon width={20} height={20} className={classes.success} />
) : (
<EngineIcon width={20} height={20} className={classes.neutral} />
)}
@@ -118,16 +118,16 @@ const DeviceRow = ({ data, index, style }) => {
<IconButton size="small">
{position.attributes.batteryLevel > 70 ? (
position.attributes.charge
- ? (<BatteryChargingFullIcon fontSize="small" className={classes.positive} />)
- : (<BatteryFullIcon fontSize="small" className={classes.positive} />)
+ ? (<BatteryChargingFullIcon fontSize="small" className={classes.success} />)
+ : (<BatteryFullIcon fontSize="small" className={classes.success} />)
) : position.attributes.batteryLevel > 30 ? (
position.attributes.charge
- ? (<BatteryCharging60Icon fontSize="small" className={classes.medium} />)
- : (<Battery60Icon fontSize="small" className={classes.medium} />)
+ ? (<BatteryCharging60Icon fontSize="small" className={classes.warning} />)
+ : (<Battery60Icon fontSize="small" className={classes.warning} />)
) : (
position.attributes.charge
- ? (<BatteryCharging20Icon fontSize="small" className={classes.negative} />)
- : (<Battery20Icon fontSize="small" className={classes.negative} />)
+ ? (<BatteryCharging20Icon fontSize="small" className={classes.error} />)
+ : (<Battery20Icon fontSize="small" className={classes.error} />)
)}
</IconButton>
</Tooltip>