|
16 | 16 | <!-- Error State --> |
17 | 17 | <div |
18 | 18 | v-if="imageError" |
19 | | - class="flex size-full flex-col items-center justify-center bg-smoke-800/50 text-center text-white py-8" |
| 19 | + class="flex size-full flex-col items-center justify-center bg-muted-background text-center text-base-foreground py-8" |
20 | 20 | > |
21 | | - <i class="mb-2 icon-[lucide--image-off] h-12 w-12 text-smoke-400" /> |
22 | | - <p class="text-sm text-smoke-300">{{ $t('g.imageFailedToLoad') }}</p> |
23 | | - <p class="mt-1 text-xs text-smoke-400"> |
| 21 | + <i |
| 22 | + class="mb-2 icon-[lucide--image-off] h-12 w-12 text-base-foreground" |
| 23 | + /> |
| 24 | + <p class="text-sm text-base-foreground"> |
| 25 | + {{ $t('g.imageFailedToLoad') }} |
| 26 | + </p> |
| 27 | + <p class="mt-1 text-xs text-base-foreground"> |
24 | 28 | {{ getImageFilename(currentImageUrl) }} |
25 | 29 | </p> |
26 | 30 | </div> |
|
83 | 87 | </div> |
84 | 88 |
|
85 | 89 | <!-- Image Dimensions --> |
86 | | - <div class="pt-2 text-center text-xs text-white"> |
| 90 | + <div class="pt-2 text-center text-xs text-base-foreground"> |
87 | 91 | <span v-if="imageError" class="text-red-400"> |
88 | 92 | {{ $t('g.errorLoadingImage') }} |
89 | 93 | </span> |
90 | | - <span v-else-if="isLoading" class="text-smoke-400"> |
| 94 | + <span v-else-if="isLoading" class="text-base-foreground"> |
91 | 95 | {{ $t('g.loading') }}... |
92 | 96 | </span> |
93 | 97 | <span v-else> |
@@ -243,7 +247,9 @@ const handleMouseLeave = () => { |
243 | 247 | const getNavigationDotClass = (index: number) => { |
244 | 248 | return [ |
245 | 249 | 'w-2 h-2 rounded-full transition-all duration-200 border-0 cursor-pointer p-0', |
246 | | - index === currentIndex.value ? 'bg-white' : 'bg-white/50 hover:bg-white/80' |
| 250 | + index === currentIndex.value |
| 251 | + ? 'bg-base-foreground' |
| 252 | + : 'bg-base-foreground/50 hover:bg-base-foreground/80' |
247 | 253 | ] |
248 | 254 | } |
249 | 255 |
|
|
0 commit comments