Skip to content

Commit 59d5d02

Browse files
committed
docs: improve text contrast for hover and focus examples in light mode
1 parent 6f9b4c1 commit 59d5d02

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/web/demos/focus/code.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ export function CodeContainer({ code }: { code: HighlightedCode }) {
3535
}}
3636
handlers={[focus]}
3737
/>
38-
<div className="p-2 mt-auto font-light text-center">
38+
<div className="p-2 mt-auto font-light text-center text-white">
3939
You can also change the focus annotations on a rendered codeblock:
4040
</div>
41-
<div className="flex justify-center gap-2 pb-4">
41+
<div className="flex justify-center gap-2 pb-4 text-white">
4242
<button
4343
onClick={() => setFocused("lorem")}
4444
disabled={focused === "lorem"}

apps/web/demos/hover/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function Page() {
1616

1717
function HoverContainer(props: { children: React.ReactNode }) {
1818
return (
19-
<div className="bg-zinc-900/80 px-2 rounded hover-container">
19+
<div className="bg-zinc-900/80 px-2 rounded hover-container text-white">
2020
{props.children}
2121
</div>
2222
)

0 commit comments

Comments
 (0)