diff --git a/src/components/Map/Drawer/LayersDrawer/LayerDrawerLayerContextMenu.component.tsx b/src/components/Map/Drawer/LayersDrawer/LayerDrawerLayerContextMenu.component.tsx
index d0f2f997736749da2702695f7e9e35ca826efd93..01296eea6435044e0c3f8b2d48c37d82bb1201d7 100644
--- a/src/components/Map/Drawer/LayersDrawer/LayerDrawerLayerContextMenu.component.tsx
+++ b/src/components/Map/Drawer/LayersDrawer/LayerDrawerLayerContextMenu.component.tsx
@@ -109,7 +109,7 @@ export const LayerDrawerLayerContextMenu = ({
             onKeyDown={handleKeyPress}
             role="menuitem"
           >
-            <Icon name="trash" />
+            <Icon name="trash" className="fill-red-600" />
             <span>Delete layer</span>
           </li>
         </ul>
diff --git a/src/components/Map/Drawer/LayersDrawer/LayersDrawerObjectActions.component.tsx b/src/components/Map/Drawer/LayersDrawer/LayersDrawerObjectActions.component.tsx
index 0e2a9bda929e7a5c667cdb2492040c73af0ce844..11f5e89496964cdb1c23d74e855f80155275df39 100644
--- a/src/components/Map/Drawer/LayersDrawer/LayersDrawerObjectActions.component.tsx
+++ b/src/components/Map/Drawer/LayersDrawer/LayersDrawerObjectActions.component.tsx
@@ -36,7 +36,8 @@ export const LayersDrawerObjectActions = ({
       />
       <IconButton
         icon="trash"
-        className="h-auto w-auto bg-transparent p-0"
+        className="h-auto w-auto bg-transparent p-0 "
+        classNameIcon="group-hover:fill-red-700 group-active:fill-red-700 fill-red-600"
         title="Remove"
         onClick={removeObject}
       />