({ theme }: { theme: InternalTheme })
| 67 | }; |
| 68 | |
| 69 | const getBorderColor = ({ theme }: { theme: InternalTheme }) => { |
| 70 | if (theme.isV3) { |
| 71 | return theme.colors.outline; |
| 72 | } |
| 73 | |
| 74 | if (theme.dark) { |
| 75 | return color(white).alpha(0.12).rgb().string(); |
| 76 | } |
| 77 | return color(black).alpha(0.12).rgb().string(); |
| 78 | }; |
| 79 | |
| 80 | const getBackgroundColor = ({ |
| 81 | theme, |
no outgoing calls
no test coverage detected
searching dependent graphs…