react
react copied to clipboard
The PointerBox is being drawn incorrectly in all dark themes.
Pay attention for the line near the caret.

Hi! This issue has been marked as stale because it has been open with no activity for 180 days. You can comment on the issue or remove the stale label to keep it open. If you do nothing, this issue will be closed in 7 days.
Hi! This issue has been marked as stale because it has been open with no activity for 180 days. You can comment on the issue or remove the stale label to keep it open. If you do nothing, this issue will be closed in 7 days.
Hey, so this issue as well as a somewhat related issue of the flash banner in dark mode will be solved with the new token release (primitives-v8). But we don't know when we release it yet.
The issue exists because in dark mode role colors use transparency.
A temp solution would be to add two background colors (using css gradient is probably the best solution here):
- bottom layer bg =
canvas.defaultof the mode - layer above = current role color e.g.
success.subtle
This will create a non-transparent version.
A temp solution would be to add two background colors (using css gradient is probably the best solution here):
* bottom layer bg = `canvas.default` of the mode * layer above = current role color e.g. `success.subtle`This will create a non-transparent version.
Hello! Thanks a lot for Your hint!