FIx a couple of light theme contrast issues
This commit is contained in:
parent
48db45f3b0
commit
01006a74ac
@ -13,6 +13,7 @@ function Banner({ isOpen, onRequestClose, children, allowClose }) {
|
|||||||
overlay: { bottom: "0", top: "initial" },
|
overlay: { bottom: "0", top: "initial" },
|
||||||
content: {
|
content: {
|
||||||
backgroundColor: theme.colors.highlight,
|
backgroundColor: theme.colors.highlight,
|
||||||
|
color: "hsl(210, 50%, 96%)",
|
||||||
top: "initial",
|
top: "initial",
|
||||||
left: "50%",
|
left: "50%",
|
||||||
right: "initial",
|
right: "initial",
|
||||||
|
@ -56,7 +56,13 @@ function Code({ children, value }) {
|
|||||||
variant = "note";
|
variant = "note";
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<Message variant={variant} my={2} as="span" sx={{ display: "block" }}>
|
<Message
|
||||||
|
variant={variant}
|
||||||
|
color="hsl(210, 50%, 96%)"
|
||||||
|
my={2}
|
||||||
|
as="span"
|
||||||
|
sx={{ display: "block" }}
|
||||||
|
>
|
||||||
{children}
|
{children}
|
||||||
</Message>
|
</Message>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user