add waveform playerbar slider

This commit is contained in:
jeffvli
2025-11-18 02:41:17 -08:00
parent 278c669a18
commit 6309712cc3
13 changed files with 1162 additions and 56 deletions
+6
View File
@@ -224,3 +224,9 @@ export const useSetColorScheme = () => {
return { setColorScheme };
};
export const useColorScheme = () => {
const { colorScheme } = useMantineColorScheme();
return colorScheme === 'dark' ? 'dark' : 'light';
};