diff --git a/source/src/App.tsx b/source/src/App.tsx index a77099a..47826af 100644 --- a/source/src/App.tsx +++ b/source/src/App.tsx @@ -85,8 +85,17 @@ p { } blockquote { - background-color: rgba(0, 0, 0, 5%); - border-left: 0.4rem solid rgba(0, 0, 0, 10%); + background-color: ${(props) => + theming.theme(props.theme.currentTheme, { + light: "rgba(0, 0, 0, 5%)", + dark: "rgba(255, 255, 255, 3%)", + })}; + + border-left: ${(props) => + theming.theme(props.theme.currentTheme, { + light: "0.4rem solid rgba(0, 0, 0, 10%)", + dark: "0.4rem solid rgba(255, 255, 255, 5%)", + })}; padding-top: 0.1rem; padding-right: 1rem; padding-bottom: 0.1rem;