diff --git a/app/lib/consts.dart b/app/lib/consts.dart
index 69a50090450df0cf6816a836827374678383c663..61d14d37abbb745ee1aa7bbff855b201c565001e 100644
--- a/app/lib/consts.dart
+++ b/app/lib/consts.dart
@@ -25,6 +25,7 @@ final titleStyle = GoogleFonts.chakraPetch(
   fontWeight: FontWeight.bold,
 );
 final regTextStyle = GoogleFonts.chakraPetch(fontSize: 16, color: textColor);
+final regTextStyleBig = GoogleFonts.chakraPetch(fontSize: 18, color: textColor);
 final chartTextStyle = GoogleFonts.chakraPetch(fontSize: 12, color: textColor);
 final subHeadingStyle = GoogleFonts.chakraPetch(fontSize: 18, color: textColor, fontWeight: FontWeight.bold);
 
diff --git a/app/lib/pages/default_page.dart b/app/lib/pages/default_page.dart
index 78be9cf7ad9ea37e2ab73a7b87661f6339a876f6..8192e7b2cfac3d6c6801c8ae787ab99f83365767 100644
--- a/app/lib/pages/default_page.dart
+++ b/app/lib/pages/default_page.dart
@@ -88,6 +88,35 @@ class _DefaultPageState extends State<DefaultPage> {
   Widget build(BuildContext context) {
     return MaterialApp(
       home: Scaffold(
+        appBar: AppBar(
+          backgroundColor: Colors.black87,
+          leading: IconButton(
+            icon: const Icon(
+                Icons.menu,
+                color: Colors.white54
+            ),
+            onPressed: () {
+              // Not implemented
+            },
+          ),
+          title: Text(
+            'Mjøsa',
+            style: regTextStyleBig,
+          ),
+          actions: [
+            IconButton(
+              icon: const Icon(
+                  Icons.search,
+                  color: Colors.white54
+              ),
+              onPressed: () {
+                setState(() {
+                  showBar = !showBar;
+                });
+              },
+            ),
+          ],
+        ),
         body: FutureBuilder(
           future: Future.wait([markerListFuture, relationFuture]),
           builder: (BuildContext context, AsyncSnapshot<List<dynamic>> snapshot) {
diff --git a/app/lib/widgets/choropleth_map.dart b/app/lib/widgets/choropleth_map.dart
index 2ab4eb52757d577b7095eefde673b8a3157e206f..a2bc6df760b38369db8a5df7e8eb1d4998304918 100644
--- a/app/lib/widgets/choropleth_map.dart
+++ b/app/lib/widgets/choropleth_map.dart
@@ -51,12 +51,6 @@ class _ChoroplethMapState extends State<ChoroplethMap> {
       }
     };
 
-    // ?Should the map be pre-divided into groups?
-
-    // Parse relation to json
-    // Make a list of key value pairs (key: groupID, value: appended shapes)
-    // Parse back to Uint8list
-
     // Initialise data source
     dataSource = MapShapeSource.memory(
       widget.relation,
@@ -98,8 +92,8 @@ class _ChoroplethMapState extends State<ChoroplethMap> {
         SfMapsTheme(
           data: SfMapsThemeData( // Coloring of selected shape
             selectionColor: selectedColor,
-            selectionStrokeWidth: 3,
-            selectionStrokeColor: Colors.red[900],
+            selectionStrokeWidth: 3.5,
+            selectionStrokeColor: Colors.blue[600],
           ),
           child: SfMaps(
             layers: [