cfahlgren1 HF staff commited on
Commit
af52b22
1 Parent(s): b975792

make lightmode more pleasant

Browse files
Files changed (1) hide show
  1. src/pages/index.tsx +3 -3
src/pages/index.tsx CHANGED
@@ -24,10 +24,10 @@ export default function Home() {
24
 
25
  const PROVIDERS_MAP: Record<string, { color: string; authors: string[] }> = {
26
  "Mistral AI": { color: "#ff7000", authors: ["mistralai"] },
27
- "Meta": { color: "#0668E1", authors: ["facebook", "meta-llama"] },
28
  "OpenAI": { color: "#10A37F", authors: ["openai"] },
29
  "Anthropic": { color: "#cc785c", authors: ["anthropic"] },
30
- "Google": { color: "#4285F4", authors: ["google"] },
31
  }
32
 
33
  const generateCalendarData = (modelData: ModelData[]) => {
@@ -128,7 +128,7 @@ export default function Home() {
128
  data={calendarData[providerName]}
129
  theme={{
130
  dark: ['#161b22', color],
131
- light: ['#ebedf0', color],
132
  }}
133
  hideTotalCount
134
  renderBlock={(block, activity) => (
 
24
 
25
  const PROVIDERS_MAP: Record<string, { color: string; authors: string[] }> = {
26
  "Mistral AI": { color: "#ff7000", authors: ["mistralai"] },
27
+ "Meta": { color: "#1877F2", authors: ["facebook", "meta-llama"] },
28
  "OpenAI": { color: "#10A37F", authors: ["openai"] },
29
  "Anthropic": { color: "#cc785c", authors: ["anthropic"] },
30
+ "Google": { color: "#DB4437", authors: ["google"] },
31
  }
32
 
33
  const generateCalendarData = (modelData: ModelData[]) => {
 
128
  data={calendarData[providerName]}
129
  theme={{
130
  dark: ['#161b22', color],
131
+ light: ['#e0e0e0', color],
132
  }}
133
  hideTotalCount
134
  renderBlock={(block, activity) => (