Skip to content

Commit

Permalink
try to get similar blue with transparent white underneath
Browse files Browse the repository at this point in the history
  • Loading branch information
karussell committed Apr 16, 2024
1 parent 14bfe41 commit bacfc4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layers/UsePathsLayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ function addAccessNetworkLayer(map: Map, selectedPath: Path, queryPoints: QueryP
function addSelectedPathsLayer(map: Map, selectedPath: Path) {
const borderStyle = new Style({
stroke: new Stroke({
color: 'white',
color: 'rgba(255,255,255,0.8)',
width: 7,
}),
})
const style = new Style({
stroke: new Stroke({
color: 'rgba(39, 93, 173, 1)',
color: 'rgba(19,66,134,0.8)',
width: 5,
}),
})
Expand Down

0 comments on commit bacfc4c

Please sign in to comment.