mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 17:24:10 +00:00
Define 13 semantic color tokens (surface, text, border, hover) with light/dark values in themes.css. Register with Tailwind via @theme inline. Migrate all 335 Vue files from hardcoded gray/white classes to semantic tokens. Add theme toggle (sun/moon/system) in user avatar dropdown. Replace @tailwindcss/forms with custom form reset using theme vars. Add status badge and alert tokens for dark mode. Theme-aware chart grid/labels, skeleton placeholders, and editor. Inline script in <head> prevents flash of wrong theme on load. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
37 lines
895 B
Vue
37 lines
895 B
Vue
<template>
|
|
<div class="rounded-md bg-alert-error-bg p-4">
|
|
<div class="flex">
|
|
<div class="shrink-0">
|
|
<XCircleIcon class="h-5 w-5 text-alert-error-text" aria-hidden="true" />
|
|
</div>
|
|
<div class="ml-3">
|
|
<h3 class="text-sm font-medium text-alert-error-text">
|
|
{{ errorTitle }}
|
|
</h3>
|
|
<div class="mt-2 text-sm text-alert-error-text">
|
|
<ul role="list" class="list-disc pl-5 space-y-1">
|
|
<li v-for="(error, key) in errors" :key="key">
|
|
{{ error }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { XCircleIcon } from '@heroicons/vue/24/solid'
|
|
|
|
const props = defineProps({
|
|
errorTitle: {
|
|
type: String,
|
|
default: 'There were some errors with your submission',
|
|
},
|
|
errors: {
|
|
type: Array,
|
|
default: null,
|
|
},
|
|
})
|
|
</script>
|