File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,9 @@ type ChipProps = {
9
9
10
10
const COLORS = {
11
11
dark : {
12
- chip : 'bg-gray-200 text-neutral-600' ,
13
12
description : 'border-gray-200 bg-neutral-600 text-gray-200' ,
14
13
} ,
15
14
light : {
16
- chip : 'bg-neutral-500 text-gray-200' ,
17
15
description : 'border-neutral-500 bg-gray-200 text-neutral-600' ,
18
16
} ,
19
17
} as const ;
@@ -25,7 +23,7 @@ export const Chip = ({ children }: ChipProps) => {
25
23
return (
26
24
< div className = "mb-2" >
27
25
< div
28
- className = { `mb-1 inline-flex cursor-pointer items-center rounded-lg px-1.5 text-[11px] font-normal ${ COLORS [ colorMode ] . chip } ` }
26
+ className = { `mb-1 inline-flex cursor-pointer items-center rounded-lg bg-neutral-500 px-1.5 text-[11px] font-normal text-gray-200 dark:bg-gray-200 dark:text-neutral-600 ` }
29
27
onClick = { ( ) => setDescriptionHeight ( ( prev ) => ( prev === 0 ? 'auto' : 0 ) ) }
30
28
>
31
29
< div className = "mr-1" > Note</ div >
You can’t perform that action at this time.
0 commit comments