enzostvs HF Staff commited on
Commit
d86ae84
·
1 Parent(s): bd63612

update UI

Browse files
Files changed (1) hide show
  1. src/lib/consts.ts +6 -6
src/lib/consts.ts CHANGED
@@ -38,24 +38,24 @@ export const PROVIDER_SELECTION_MODES = [
38
  value: 'auto',
39
  label: 'Auto',
40
  description: 'your HF preference order',
41
- class: 'bg-yellow-500/10',
42
- iconClass: 'text-yellow-500',
43
  icon: WandSparkles
44
  },
45
  {
46
  value: 'fastest',
47
  label: 'Fastest',
48
  description: 'highest throughput',
49
- class: 'bg-emerald-500/10',
50
- iconClass: 'text-emerald-500',
51
  icon: CircleGauge
52
  },
53
  {
54
  value: 'cheapest',
55
  label: 'Cheapest',
56
  description: 'lowest cost',
57
- class: 'bg-blue-500/10',
58
- iconClass: 'text-blue-500',
59
  icon: CircleDollarSign
60
  }
61
  ];
 
38
  value: 'auto',
39
  label: 'Auto',
40
  description: 'your HF preference order',
41
+ class: 'bg-yellow-500 dark:bg-yellow-500/10',
42
+ iconClass: 'text-white dark:text-yellow-500',
43
  icon: WandSparkles
44
  },
45
  {
46
  value: 'fastest',
47
  label: 'Fastest',
48
  description: 'highest throughput',
49
+ class: 'bg-emerald-500 dark:bg-emerald-500/10',
50
+ iconClass: 'text-white dark:text-emerald-500',
51
  icon: CircleGauge
52
  },
53
  {
54
  value: 'cheapest',
55
  label: 'Cheapest',
56
  description: 'lowest cost',
57
+ class: 'bg-blue-500 dark:bg-blue-500/10',
58
+ iconClass: 'text-white dark:text-blue-500',
59
  icon: CircleDollarSign
60
  }
61
  ];