diff --git a/website/src/components/DataGrid.astro b/website/src/components/DataGrid.astro
index a77cafa..f605c68 100644
--- a/website/src/components/DataGrid.astro
+++ b/website/src/components/DataGrid.astro
@@ -41,9 +41,9 @@ Astro.response.headers.set('Cache-Control', 'no-cache');
-
TTFT: Time To First Token
-
TPS: Tokens Per Second
-
Total Time: From request to final token
+
TTFT: Time To First Token
+
TPS: Tokens Per Second
+
Total Time: From request to final token
@@ -52,8 +52,8 @@ Astro.response.headers.set('Cache-Control', 'no-cache');
-
Green = best.
-
Red = worst.
+
Green = fastest,
+
Red = slowest.
diff --git a/website/src/components/Hero.astro b/website/src/components/Hero.astro
index 3ec32b9..1ab9ff9 100644
--- a/website/src/components/Hero.astro
+++ b/website/src/components/Hero.astro
@@ -3,7 +3,7 @@ import Section from './Section.astro';
---
- Human conversations are fast, typicallyaround 200ms between turns, and we think LLMs should be just as quick. This site provides reliable measurements for the performance of top models. Stats are updated daily.
+ Human conversations are fast, typically around 200ms between turns, and we think LLMs should be just as quick. This site provides reliable measurements for the performance of top models. Stats are updated daily.
Definitions, methodology, and links to source below.
diff --git a/website/src/utils/DataGridDefinitions.ts b/website/src/utils/DataGridDefinitions.ts
index c3cb9e4..5bb2dce 100644
--- a/website/src/utils/DataGridDefinitions.ts
+++ b/website/src/utils/DataGridDefinitions.ts
@@ -4,13 +4,13 @@ interface ValueFormatterParam {
}
export const WorstColor = {
- rgb: "239 68 68",
- hex: "#EF4444",
+ rgb: "185 246 206",
+ hex: "#B9F6CE",
};
export const BestColor = {
- rgb: "34 197 94",
- hex: "#22C55E",
+ rgb: "253 201 201",
+ hex: "#FDC9C9",
};