increase contrast a bit, autoplay when skippping

This commit is contained in:
2024-01-05 02:54:42 +01:00
parent 5847e8de7a
commit 8b5c08ba67

View File

@@ -9,6 +9,7 @@
export function jumpToTrack(s) { export function jumpToTrack(s) {
getAudio().currentTime = s; getAudio().currentTime = s;
getAudio().play();
} }
</script> </script>
@@ -32,7 +33,7 @@
export let iconColor = 'gray'; export let iconColor = 'gray';
export let textColor = 'gray'; export let textColor = 'gray';
export let barPrimaryColor = 'lightblue'; export let barPrimaryColor = 'lightblue';
export let barSecondaryColor = 'lightgray'; export let barSecondaryColor = '#6f6f6f';
export let backgroundColor = 'white'; export let backgroundColor = 'white';
export let display = false; export let display = false;
export let inlineTooltip = false; export let inlineTooltip = false;