fix: dark mode colors

This commit is contained in:
Shivam Mishra
2024-11-28 17:43:00 +05:30
parent 0d40f2a027
commit a706f26ef4
2 changed files with 2 additions and 2 deletions
@@ -81,7 +81,7 @@ const recordings = computed(() => {
<AudioChip
v-for="attachment in recordings"
:key="attachment.id"
class="bg-n-alpha-3 text-n-slate-12"
class="bg-n-alpha-3 dark:bg-n-alpha-2 text-n-slate-12"
:attachment="attachment"
/>
</div>
@@ -104,7 +104,7 @@ const downloadAudio = () => {
min="0"
:max="duration"
:value="currentTime"
class="w-full h-1 bg-n-slate-8 rounded-lg appearance-none cursor-pointer accent-current"
class="w-full h-1 bg-n-slate-12/40 rounded-lg appearance-none cursor-pointer accent-current"
@input="seek"
/>
</div>