diff --git a/src/plugins/album-color-theme/index.ts b/src/plugins/album-color-theme/index.ts index ce02f5f7..d9976aa4 100644 --- a/src/plugins/album-color-theme/index.ts +++ b/src/plugins/album-color-theme/index.ts @@ -186,6 +186,7 @@ export default createPlugin< document.body.style.setProperty('background', this.getMixedColor('#030303', COLOR_KEY), 'important'); document.documentElement.style.setProperty('--ytmusic-background', this.getMixedColor('#030303', DARK_COLOR_KEY), 'important'); + document.documentElement.style.setProperty('--ytmusic-nav-bar', this.getMixedColor('#030303', DARK_COLOR_KEY), 'important'); }, }, }); diff --git a/src/plugins/in-app-menu/renderer.tsx b/src/plugins/in-app-menu/renderer.tsx index 4ff048bb..3fdb928a 100644 --- a/src/plugins/in-app-menu/renderer.tsx +++ b/src/plugins/in-app-menu/renderer.tsx @@ -1,6 +1,5 @@ import { createSignal } from 'solid-js'; import { render } from 'solid-js/web'; -import { extractCss } from 'solid-styled-components'; import { TitleBar } from './renderer/TitleBar'; import { defaultInAppMenuConfig, InAppMenuConfig } from './constants';