diff --git a/addons/web_editor/static/src/scss/web_editor.common.scss b/addons/web_editor/static/src/scss/web_editor.common.scss
index cd3b6c5a189f93f951d8493d0bf669a40ae1907b..7dd0c2ce3565ac130c12d77dc3064b8acafbadb3 100644
--- a/addons/web_editor/static/src/scss/web_editor.common.scss
+++ b/addons/web_editor/static/src/scss/web_editor.common.scss
@@ -611,16 +611,16 @@ blockquote {
         .dropdown-menu .dropdown-item { // Need to add +1 priority thanks to
                                         // .dropdown-menu to counter a:not(.btn)
             &, h6 { // Quick fix: sometimes we use h6 in dropdowns
-                color: $dropdown-link-color;
+                color: $dropdown-link-color !important;
 
                 @include hover-focus {
-                    color: $dropdown-link-hover-color;
+                    color: $dropdown-link-hover-color !important;
                 }
             }
             &.disabled,
             &:disabled {
                 &, h6 { // Quick fix: sometimes we use h6 in dropdowns
-                    color: $dropdown-link-disabled-color;
+                    color: $dropdown-link-disabled-color !important;
                 }
             }
         }
diff --git a/addons/website/static/src/scss/website.scss b/addons/website/static/src/scss/website.scss
index 412d7d279e3b5193d23f7e70edd0d60055c7c35c..62c1a5ee252294303b04453b0d64f4b7c195e178 100644
--- a/addons/website/static/src/scss/website.scss
+++ b/addons/website/static/src/scss/website.scss
@@ -1148,14 +1148,17 @@ header {
         z-index: 1000;
 
         > .navbar {
+            @include o-apply-colors(1); // Reset to default colored components
             background-color: transparent !important;
             border-color: transparent;
             color: inherit;
 
             .nav-item {
                 > .nav-link {
-                    background-color: transparent;
-                    color: inherit;
+                    &, &:hover {
+                        background-color: transparent;
+                        color: inherit;
+                    }
 
                     &.active {
                         font-weight: bolder;