Starchik1 commited on
Commit
1ceb2c0
·
verified ·
1 Parent(s): 98fa9fa

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +13 -5
main.py CHANGED
@@ -346,9 +346,9 @@ def proxy(path):
346
  --table-border: rgba(51, 65, 85, 0.8);
347
  --table-even-row: rgba(30, 41, 59, 0.5);
348
  --hr-color: rgba(226, 232, 240, 0.2);
349
- --link-color: #dbeafe; /* Much lighter blue */
350
- --link-hover-color: #ffffff; /* White on hover for maximum contrast */
351
- --link-visited-color: #e9d5ff; /* Lighter purple */
352
  }
353
  body {
354
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
@@ -386,6 +386,8 @@ def proxy(path):
386
  }
387
 
388
  [data-theme="dark"] a:hover {
 
 
389
  text-decoration: underline;
390
  }
391
  .breadcrumb a:hover {
@@ -431,9 +433,15 @@ def proxy(path):
431
  }
432
 
433
  [data-theme="dark"] a {
434
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
 
435
  }
436
- li a:hover {
 
 
 
 
 
437
  background: var(--primary-gradient);
438
  color: white;
439
  }
 
346
  --table-border: rgba(51, 65, 85, 0.8);
347
  --table-even-row: rgba(30, 41, 59, 0.5);
348
  --hr-color: rgba(226, 232, 240, 0.2);
349
+ --link-color: #93c5fd;
350
+ --link-hover-color: #bfdbfe;
351
+ --link-visited-color: #c4b5fd;
352
  }
353
  body {
354
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
 
386
  }
387
 
388
  [data-theme="dark"] a:hover {
389
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
390
+ color: #dbeafe;
391
  text-decoration: underline;
392
  }
393
  .breadcrumb a:hover {
 
433
  }
434
 
435
  [data-theme="dark"] a {
436
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
437
+ color: #bfdbfe;
438
  }
439
+ [data-theme="dark"] a:hover {
440
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
441
+ color: #dbeafe;
442
+ text-decoration: underline;
443
+ }
444
+ .breadcrumb a:hover {
445
  background: var(--primary-gradient);
446
  color: white;
447
  }