aboutsummaryrefslogtreecommitdiff
path: root/modern/src/map/main/MapLiveRoutes.js
diff options
context:
space:
mode:
authorAnton Tananaev <anton@traccar.org>2022-06-03 08:25:48 -0700
committerAnton Tananaev <anton@traccar.org>2022-06-03 08:25:48 -0700
commit7d521e8411dbeb9ca6bbeb98453145b44c7e5913 (patch)
tree369bb41e7a03d1f4c7a43ab6dafa69526af9101c /modern/src/map/main/MapLiveRoutes.js
parentc3b728b2a29d014ec1a4de454f33b47d0e88fa47 (diff)
downloadtrackermap-web-7d521e8411dbeb9ca6bbeb98453145b44c7e5913.tar.gz
trackermap-web-7d521e8411dbeb9ca6bbeb98453145b44c7e5913.tar.bz2
trackermap-web-7d521e8411dbeb9ca6bbeb98453145b44c7e5913.zip
Add geometry color to theme
Diffstat (limited to 'modern/src/map/main/MapLiveRoutes.js')
-rw-r--r--modern/src/map/main/MapLiveRoutes.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/modern/src/map/main/MapLiveRoutes.js b/modern/src/map/main/MapLiveRoutes.js
index 09319cff..a675afa0 100644
--- a/modern/src/map/main/MapLiveRoutes.js
+++ b/modern/src/map/main/MapLiveRoutes.js
@@ -1,12 +1,15 @@
import { useEffect, useState } from 'react';
import { useSelector } from 'react-redux';
+import { useTheme } from '@mui/styles';
import { map } from '../core/MapView';
import { usePrevious } from '../../reactHelper';
const MapLiveRoutes = () => {
const id = 'liveRoute';
+ const theme = useTheme();
+
const selectedDeviceId = useSelector((state) => state.devices.selectedId);
const currentDeviceId = usePrevious(selectedDeviceId);
@@ -34,7 +37,7 @@ const MapLiveRoutes = () => {
'line-cap': 'round',
},
paint: {
- 'line-color': '#3bb2d0',
+ 'line-color': theme.palette.colors.geometry,
'line-width': 2,
},
});