Files
InvoiceShelf/resources/scripts/components/base/BasePaidStatusBadge.vue
Darko Gjorgjijoski dabdd2b417 Fix status badge colors: SENT to green, PAID more visible
Change SENT status from yellow to green in both invoice and estimate
badges. Make PAID badge more noticeable with stronger green background
(40% opacity) and semibold text. Use consistent text-status-green
token for PAID across all badge components.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 02:30:00 +02:00

42 lines
1.1 KiB
Vue

<template>
<span :class="[badgeColorClasses, defaultClass]" class="">
<slot />
</span>
</template>
<script>
import { computed } from 'vue'
export default {
props: {
status: {
type: String,
required: false,
default: '',
},
defaultClass: {
type: String,
default: 'px-1 py-0.5 text-xs',
},
},
setup(props) {
const badgeColorClasses = computed(() => {
switch (props.status) {
case 'PAID':
return 'bg-green-500/40 text-status-green uppercase font-semibold text-center'
case 'UNPAID':
return ' bg-yellow-500/25 text-status-yellow uppercase font-normal text-center '
case 'PARTIALLY_PAID':
return 'bg-blue-400/25 text-status-blue uppercase font-normal text-center'
case 'OVERDUE':
return 'bg-red-300/50 px-2 py-1 text-sm text-status-red uppercase font-normal text-center'
default:
return 'bg-surface-secondary0/25 text-heading uppercase font-normal text-center'
}
})
return { badgeColorClasses }
},
}
</script>