refactor(ui): generate colors with higher luminosity in dark mode
Signed-off-by: SphericalKat <amolele@gmail.com>
This commit is contained in:
parent
91699cc8ec
commit
a06d552935
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ function User({
|
|||
const inputRef = useRef<HTMLInputElement>(null);
|
||||
const { isOpen, onOpen, onClose } = useDisclosure();
|
||||
|
||||
const nameColor = `hsl(${info.hue}, 90%, 25%)`;
|
||||
const nameColor = `hsl(${info.hue}, 90%, ${darkMode ? "70%" : "25%"})`;
|
||||
return (
|
||||
<Popover
|
||||
placement="right"
|
||||
|
|
Loading…
Add table
Reference in a new issue