Made inline code sky blue

This commit is contained in:
Matt Aitken
2023-05-11 09:47:54 +01:00
parent b24df76fca
commit 7a4742a314
@@ -1,7 +1,7 @@
import type { ReactNode } from "react";
const inlineCode =
"px-1 py-0.5 text-sm rounded-md border border-slate-800 bg-slate-950 text-slate-400 font-mono text-sm";
"px-1 py-0.5 text-sm rounded-md border border-slate-800 bg-slate-950 text-sky-200 font-mono text-sm";
export function InlineCode({ children }: { children: ReactNode }) {
return <code className={inlineCode}>{children}</code>;