Skip to content

Commit

Permalink
Merge pull request #195 from Emurgo/fix-backgraud-token-name
Browse files Browse the repository at this point in the history
Update backgoround color
  • Loading branch information
vsubhuman authored Sep 30, 2024
2 parents 8c6eaff + 19d0425 commit 1c390ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layout/LayoutRevamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const Container = styled.div`
padding: 20px 0px;
`;

const SBackground = styled('div')(({ isDark,isLight }) => ({
const SBackground = styled('div')(({ isDark, isLight }) => ({
// eslint-disable-next-line no-nested-ternary
backgroundColor: isDark ? '#1F232E' : isLight ? '#EAEDF2' : '#FFFFFF',
backgroundColor: isDark ? '#15171F' : '#FFFFFF',
'& h1, & h2, & h3, & h4, & h5, & h6, & a, & p, & span': {
color: isDark && '#E1E6F5',
},
Expand Down

0 comments on commit 1c390ac

Please sign in to comment.