Skip to content
Merged
Show file tree
Hide file tree
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
18 changes: 18 additions & 0 deletions packages/app/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,24 @@
content: none;
}

/* Pride theme for the InferenceX wordmark β€” celebrating June Pride Month.
Paints the brand text with the 6-stripe rainbow flag via a clipped gradient. */
.pride-wordmark {
background-image: linear-gradient(
90deg,
#e40303 0%,
#ff8c00 20%,
#ffed00 40%,
#008026 60%,
#004dff 80%,
#750787 100%
);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
-webkit-text-fill-color: transparent;
}

/* Shiki dual-theme: light by default, dark when .dark class is active */
.shiki,
.shiki span {
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/components/header/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export const Header = ({ starCount }: { starCount?: number | null }) => {
<div className="flex h-14 items-center gap-6">
{/* Brand */}
<Link href="/" className="flex items-center gap-2 shrink-0">
<span className="text-lg font-bold tracking-tight">InferenceX</span>
<span className="pride-wordmark text-lg font-bold tracking-tight">InferenceX</span>
<span className="hidden sm:flex items-center gap-1.5 text-xs text-muted-foreground">
by
<Image
Expand Down
Loading