diff --git a/src/components/messaging/MessageEmbed.tsx b/src/components/messaging/MessageEmbed.tsx index 6e318ea..d41cf7d 100644 --- a/src/components/messaging/MessageEmbed.tsx +++ b/src/components/messaging/MessageEmbed.tsx @@ -12,7 +12,7 @@ interface EmbedProps { const EmbedContainer = styled.div` padding: 10px; margin-top: 5px; - background: rgba(0, 0, 0, 0.3); + background: var(--background-secondary); width: min-content; `; diff --git a/src/contexts/Theme.tsx b/src/contexts/Theme.tsx index 42b3e0c..2e8d134 100644 --- a/src/contexts/Theme.tsx +++ b/src/contexts/Theme.tsx @@ -123,7 +123,7 @@ export const ThemePresets: Record = { dark: { backgroundPrimary: "#2e2e2e", backgroundPrimaryAlt: "#2a2a2a", - backgroundPrimaryHighlight: "#262626", + backgroundPrimaryHighlight: "#272727", backgroundSecondary: "#232323", backgroundSecondaryAlt: "#1e1e1e", backgroundSecondaryHighlight: "#313131",