Skip to content

Commit ef730e8

Browse files
Remove white color from usecolorplaette hook
1 parent 5e2f674 commit ef730e8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

hooks/useColorPalette.ts

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { useState, useRef } from 'react';
22

33
export type Color =
44
| ''
5-
| 'bg-white'
65
| 'bg-zinc-700'
76
| 'bg-slate-700'
87
| 'bg-neutral-700'
@@ -27,7 +26,6 @@ export type Color =
2726

2827
export function useColorPalette() {
2928
const bgColors: Color[] = [
30-
'bg-white',
3129
'bg-zinc-700',
3230
'bg-slate-700',
3331
'bg-neutral-700',

0 commit comments

Comments
 (0)