diff --git a/website/js/docs/nav.js b/website/js/docs/nav.js index 3562728..49a72d0 100644 --- a/website/js/docs/nav.js +++ b/website/js/docs/nav.js @@ -32,7 +32,7 @@ function highlightPath () { function highlightSubPath ( sliceStart ) { if ( $( location ).attr( 'pathname' ).slice( sliceStart, parseInt( location.pathname.length ) - 5 ) === '' ) { - $( '#root' ).animate( { 'background-color': 'black' }, 200 ); + $( '#root' ).animate( { 'background-color': 'rgb(43, 43, 43)' }, 200 ); bannedIDs.push( 'root' ); } else { $( `#${location.pathname.slice( sliceStart, parseInt( location.pathname.length ) - 5 )}` ).animate( { 'background-color': 'rgb(43, 43, 43)' }, 200 );