From 7a4742a314fd948ec9b1e20c7bb6052c6838586d Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Thu, 11 May 2023 09:47:54 +0100 Subject: [PATCH] Made inline code sky blue --- apps/webapp/app/components/code/InlineCode.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/webapp/app/components/code/InlineCode.tsx b/apps/webapp/app/components/code/InlineCode.tsx index 5f88e5bc2..69eeb5b38 100644 --- a/apps/webapp/app/components/code/InlineCode.tsx +++ b/apps/webapp/app/components/code/InlineCode.tsx @@ -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 {children};