-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docz-theme-default): adjust theme colors
- Loading branch information
1 parent
0f6bd7b
commit eed7212
Showing
33 changed files
with
194 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
packages/docz-theme-default/src/components/ui/Blockquote.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
import styled from 'react-emotion' | ||
import { get } from '@utils/theme' | ||
|
||
export const Blockquote = styled('blockquote')` | ||
background: ${p => p.theme.docz.colors.blockquoteBg}; | ||
border-left: 5px solid ${p => p.theme.docz.colors.blockquoteBorder}; | ||
color: ${p => p.theme.docz.colors.blockquoteColor}; | ||
${p => p.theme.docz.styles.blockquote}; | ||
background: ${get('colors.blockquoteBg')}; | ||
border-left: 5px solid ${get('colors.blockquoteBorder')}; | ||
color: ${get('colors.blockquoteColor')}; | ||
${get('styles.blockquote')}; | ||
& > p { | ||
margin: 0; | ||
color: ${p => p.theme.docz.colors.blockquoteColor}; | ||
color: ${get('colors.blockquoteColor')}; | ||
} | ||
` |
Oops, something went wrong.