blob: 98a08ea15868600e074e5a555f4f8f26573d7d4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
import styled from "styled-components";
import {
defaultBorderRadius,
secondaryDark,
vscBackground,
vscForeground,
} from ".";
import MarkdownPreview from "@uiw/react-markdown-preview";
const StyledMarkdownPreview = styled(MarkdownPreview)<{
light: boolean | undefined;
}>`
pre {
background-color: ${(props) =>
props.light ? vscBackground : secondaryDark};
padding: 1px;
border-radius: ${defaultBorderRadius};
border: 0.5px solid white;
}
code {
color: #f78383;
word-wrap: break-word;
border-radius: ${defaultBorderRadius};
background-color: ${secondaryDark};
}
pre > code {
background-color: ${(props) =>
props.light ? vscBackground : secondaryDark};
color: ${vscForeground};
}
background-color: ${(props) => (props.light ? "transparent" : vscBackground)};
font-family: "Lexend", sans-serif;
font-size: 13px;
padding: 8px;
color: ${vscForeground};
`;
export default StyledMarkdownPreview;
|