Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions services/budCustomer/src/app/(app)/logs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,7 @@ export default function ObservabilityPage() {
<div className="boardPageTop">
<PageHeader
headding="Logs"
hClass="!text-[#000000] dark:!text-[#FFFFFF]"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While this fixes the visibility issue in light mode, using hardcoded hex color values like #000000 and #FFFFFF is not ideal for maintainability, especially in a themed application. It's better to use Tailwind's built-in color names.

This makes the code more readable and resilient to future theme changes. If the theme's definition of black or white changes, your code will automatically adapt.

Suggested change
hClass="!text-[#000000] dark:!text-[#FFFFFF]"
hClass="!text-black dark:!text-white"

/>
</div>

Expand Down
Loading