Update index.html
#1
by LH-Tech-AI - opened
- index.html +6 -6
index.html
CHANGED
|
@@ -14,8 +14,8 @@
|
|
| 14 |
--accent: #58a6ff;
|
| 15 |
--green: #3fb950;
|
| 16 |
--orange: #d29922;
|
| 17 |
-
--compactai: #
|
| 18 |
-
--supralabs: #
|
| 19 |
}
|
| 20 |
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 21 |
body { font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif; background: var(--bg); color: var(--text); padding: 2rem; }
|
|
@@ -39,8 +39,8 @@
|
|
| 39 |
td:first-child, th:first-child { text-align: left; padding-left: 1rem; }
|
| 40 |
tr:hover td { background: rgba(88,166,255,.05); }
|
| 41 |
.org-tag { display: inline-block; padding: .15rem .5rem; border-radius: 4px; font-size: .75rem; font-weight: 600; }
|
| 42 |
-
.org-compactai { background: #
|
| 43 |
-
.org-supralabs { background: #
|
| 44 |
.row-compactai { border-left: 3px solid var(--compactai); }
|
| 45 |
.row-supralabs { border-left: 3px solid var(--supralabs); }
|
| 46 |
.best { color: var(--green); font-weight: 700; }
|
|
@@ -307,8 +307,8 @@ const models = [
|
|
| 307 |
{ name: 'Glint-0.1', org: 'compactai', blimp: 46.7, arc: 21.0, wiki: null },
|
| 308 |
];
|
| 309 |
|
| 310 |
-
const colorMap = { compactai: '#
|
| 311 |
-
const bgMap = { compactai: 'rgba(
|
| 312 |
|
| 313 |
function buildChart(canvasId, metric, label, reverse) {
|
| 314 |
const m = metric === 'wiki' ? 'wiki' : metric;
|
|
|
|
| 14 |
--accent: #58a6ff;
|
| 15 |
--green: #3fb950;
|
| 16 |
--orange: #d29922;
|
| 17 |
+
--compactai: #3fb950;
|
| 18 |
+
--supralabs: #58a6ff;
|
| 19 |
}
|
| 20 |
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 21 |
body { font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif; background: var(--bg); color: var(--text); padding: 2rem; }
|
|
|
|
| 39 |
td:first-child, th:first-child { text-align: left; padding-left: 1rem; }
|
| 40 |
tr:hover td { background: rgba(88,166,255,.05); }
|
| 41 |
.org-tag { display: inline-block; padding: .15rem .5rem; border-radius: 4px; font-size: .75rem; font-weight: 600; }
|
| 42 |
+
.org-compactai { background: #3fb95033; color: var(--compactai); }
|
| 43 |
+
.org-supralabs { background: #1f6feb33; color: var(--supralabs); }
|
| 44 |
.row-compactai { border-left: 3px solid var(--compactai); }
|
| 45 |
.row-supralabs { border-left: 3px solid var(--supralabs); }
|
| 46 |
.best { color: var(--green); font-weight: 700; }
|
|
|
|
| 307 |
{ name: 'Glint-0.1', org: 'compactai', blimp: 46.7, arc: 21.0, wiki: null },
|
| 308 |
];
|
| 309 |
|
| 310 |
+
const colorMap = { compactai: '#3fb950', supralabs: '#58a6ff' };
|
| 311 |
+
const bgMap = { compactai: 'rgba(63,185,80,0.7)', supralabs: 'rgba(88,166,255,0.7)' };
|
| 312 |
|
| 313 |
function buildChart(canvasId, metric, label, reverse) {
|
| 314 |
const m = metric === 'wiki' ? 'wiki' : metric;
|