Update index.html
Browse files- index.html +14 -2
index.html
CHANGED
|
@@ -42,8 +42,11 @@
|
|
| 42 |
.org-tag { display: inline-block; padding: .15rem .5rem; border-radius: 4px; font-size: .75rem; font-weight: 600; }
|
| 43 |
.org-compactai { background: #3fb95033; color: var(--compactai); }
|
| 44 |
.org-supralabs { background: #1f6feb33; color: var(--supralabs); }
|
|
|
|
|
|
|
| 45 |
.row-compactai { border-left: 3px solid var(--compactai); }
|
| 46 |
.row-supralabs { border-left: 3px solid var(--supralabs); }
|
|
|
|
| 47 |
.best { color: var(--green); font-weight: 700; }
|
| 48 |
.na { color: #484f58; font-style: italic; }
|
| 49 |
.links a { color: var(--accent); text-decoration: none; }
|
|
@@ -320,8 +323,17 @@ const models = [
|
|
| 320 |
{ name: 'Glint-0.1', org: 'compactai', blimp: 46.7, arc: 21.0, wiki: null },
|
| 321 |
];
|
| 322 |
|
| 323 |
-
const colorMap = {
|
| 324 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 325 |
|
| 326 |
function buildChart(canvasId, metric, label, reverse) {
|
| 327 |
const m = metric === 'wiki' ? 'wiki' : metric;
|
|
|
|
| 42 |
.org-tag { display: inline-block; padding: .15rem .5rem; border-radius: 4px; font-size: .75rem; font-weight: 600; }
|
| 43 |
.org-compactai { background: #3fb95033; color: var(--compactai); }
|
| 44 |
.org-supralabs { background: #1f6feb33; color: var(--supralabs); }
|
| 45 |
+
.org-axiomiclabs { background: #8957e533; color: var(--axiomiclabs); }
|
| 46 |
+
|
| 47 |
.row-compactai { border-left: 3px solid var(--compactai); }
|
| 48 |
.row-supralabs { border-left: 3px solid var(--supralabs); }
|
| 49 |
+
.row-axiomiclabs { border-left: 3px solid var(--axiomiclabs); }
|
| 50 |
.best { color: var(--green); font-weight: 700; }
|
| 51 |
.na { color: #484f58; font-style: italic; }
|
| 52 |
.links a { color: var(--accent); text-decoration: none; }
|
|
|
|
| 323 |
{ name: 'Glint-0.1', org: 'compactai', blimp: 46.7, arc: 21.0, wiki: null },
|
| 324 |
];
|
| 325 |
|
| 326 |
+
const colorMap = {
|
| 327 |
+
compactai: '#3fb950',
|
| 328 |
+
supralabs: '#58a6ff',
|
| 329 |
+
axiomiclabs: '#c2b6ff'
|
| 330 |
+
};
|
| 331 |
+
|
| 332 |
+
const bgMap = {
|
| 333 |
+
compactai: 'rgba(63,185,80,0.7)',
|
| 334 |
+
supralabs: 'rgba(88,166,255,0.7)',
|
| 335 |
+
axiomiclabs: 'rgba(194,182,255,0.7)'
|
| 336 |
+
};
|
| 337 |
|
| 338 |
function buildChart(canvasId, metric, label, reverse) {
|
| 339 |
const m = metric === 'wiki' ? 'wiki' : metric;
|