Skip to content

Commit a41c825

Browse files
updt
1 parent 37d715f commit a41c825

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

pa11y-ci.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@
1515
"urls": [
1616
{ "url": "http://127.0.0.1:4173/algolens-private/" },
1717
{
18-
"url": "http://127.0.0.1:4173/algolens-private/sort/bubble?dataset=random&n=50"
18+
"url": "http://127.0.0.1:4173/algolens-private/viz/sorting/bubble-sort?dataset=random&n=50"
1919
},
2020
{
21-
"url": "http://127.0.0.1:4173/algolens-private/sort/quick?dataset=gaussian&n=100"
21+
"url": "http://127.0.0.1:4173/algolens-private/viz/sorting/quick-sort?dataset=gaussian&n=100"
2222
},
23-
{ "url": "http://127.0.0.1:4173/algolens-private/graph/dijkstra" },
24-
{ "url": "http://127.0.0.1:4173/algolens-private/404" }
23+
{
24+
"url": "http://127.0.0.1:4173/algolens-private/viz/graphs/depth-first-search"
25+
},
26+
{ "url": "http://127.0.0.1:4173/algolens-private/404.html" }
2527
]
2628
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"lhci": "npm run build && lhci autorun --config=lhci/lighthouserc.json",
5656
"a11y": "pa11y-ci -c pa11y-ci.json",
5757
"a11y:report": "pa11y-ci -c pa11y-ci.json --json > reports/a11y/report.json",
58-
"a11y:ci": "npm run build && start-server-and-test \"vite preview --port 4173 --strictPort --host 127.0.0.1\" \"http-get://127.0.0.1:4173/algolens-private/\" \"npm run a11y\"",
58+
"a11y:ci": "cross-env GITHUB_ACTIONS=true GITHUB_REPOSITORY=blackphoenix42/algolens-private npm run build && start-server-and-test \"vite preview --port 4173 --strictPort --host 127.0.0.1\" \"http-get://127.0.0.1:4173/algolens-private/\" \"npm run a11y\"",
5959
"postbuild": "node scripts/postbuild.mjs",
6060
"licenses": "node scripts/check-licenses.mjs",
6161
"sitemap": "node scripts/generate-sitemap.mjs --base https://algolens.app --out public/sitemap.xml",

public/404.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
--fg: #0b1020;
1515
--muted: #4b5563;
1616
--card: #f8fafc;
17-
--accent: #3b82f6;
17+
--accent: #2b72e6;
1818
--border: #e5e7eb;
1919
--shadow: 0 10px 30px rgba(2, 6, 23, 0.07);
20-
--ring: 0 0 0 3px rgba(59, 130, 246, 0.25);
20+
--ring: 0 0 0 3px rgba(43, 114, 230, 0.25);
2121
--btn-bg: rgba(255, 255, 255, 0.8);
2222
--btn-bg-hover: #ffffff;
2323
--btn-border: #e5e7eb;
@@ -29,10 +29,10 @@
2929
--fg: #eaf0ff;
3030
--muted: #9aa5c2;
3131
--card: #0f1733;
32-
--accent: #6c8cff;
32+
--accent: #2b72e6;
3333
--border: #253059;
3434
--shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
35-
--ring: 0 0 0 3px rgba(108, 140, 255, 0.35);
35+
--ring: 0 0 0 3px rgba(43, 114, 230, 0.35);
3636
--btn-bg: rgba(30, 41, 59, 0.8);
3737
--btn-bg-hover: rgba(30, 41, 59, 1);
3838
--btn-border: #334155;

0 commit comments

Comments
 (0)