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 = {
99
1010const COLORS = {
1111 dark : {
12- chip : 'bg-gray-200 text-neutral-600' ,
1312 description : 'border-gray-200 bg-neutral-600 text-gray-200' ,
1413 } ,
1514 light : {
16- chip : 'bg-neutral-500 text-gray-200' ,
1715 description : 'border-neutral-500 bg-gray-200 text-neutral-600' ,
1816 } ,
1917} as const ;
@@ -25,7 +23,7 @@ export const Chip = ({ children }: ChipProps) => {
2523 return (
2624 < div className = "mb-2" >
2725 < 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 ` }
2927 onClick = { ( ) => setDescriptionHeight ( ( prev ) => ( prev === 0 ? 'auto' : 0 ) ) }
3028 >
3129 < div className = "mr-1" > Note</ div >
You can’t perform that action at this time.
0 commit comments