fix(album-color-theme): fix Color deps

This commit is contained in:
JellyBrick
2025-02-17 01:44:24 +09:00
parent 65bf9129ea
commit f47262d27b
3 changed files with 3 additions and 26 deletions

View File

@ -1,5 +1,5 @@
import { FastAverageColor } from 'fast-average-color';
import Color from 'color';
import Color, { ColorInstance } from 'color';
import style from './style.css?inline';
@ -14,8 +14,8 @@ export default createPlugin<
unknown,
unknown,
{
color?: Color;
darkColor?: Color;
color?: ColorInstance;
darkColor?: ColorInstance;
playerPage: HTMLElement | null;
navBarBackground: HTMLElement | null;