Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dark scheme overlay #7052

Merged
merged 25 commits into from
Oct 24, 2019
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7bdd265
Set background color in the overlay from styles.
Fabianopb Apr 8, 2019
2d049b3
Add method for getting OS color scheme.
Fabianopb Apr 8, 2019
612f5b8
Set overlay style based on scheme.
Fabianopb Apr 8, 2019
fbd8906
Set background color from iframe.
Fabianopb Apr 9, 2019
89e559f
Pass color scheme via props.
Fabianopb Apr 9, 2019
a9c5770
Style error and warn code blocks.
Fabianopb Apr 11, 2019
952f8a3
Start to use the concept of theme objects.
Fabianopb May 12, 2019
73abe96
Pass theme down to most of components.
Fabianopb May 12, 2019
b1951b5
Add theme to Collapsible and NavigationBar.
Fabianopb May 13, 2019
57c364f
Put ANSI colors in the theme objects.
Fabianopb May 13, 2019
2c4ab11
Create and use a flow type for the Theme.
Fabianopb May 13, 2019
62f921e
Merge remote-tracking branch 'upstream/master' into dark-scheme-overlay
Fabianopb May 13, 2019
a72ad94
Use context hook to spread the theme.
Fabianopb May 14, 2019
cf03c7e
Remove unused variable.
Fabianopb May 14, 2019
96d8ee7
Finalize style of dark theme.
Fabianopb May 14, 2019
195ec3f
Fix pre background in light theme.
Fabianopb May 14, 2019
c261af4
Removed apparently unused variables and method.
Fabianopb May 14, 2019
2cd2d84
Remove hex hash addition from the ansi generator.
Fabianopb May 15, 2019
e605d4d
Update flow-bin to get rid of lint errors related to hooks.
Fabianopb May 15, 2019
9e580dd
Merge remote-tracking branch 'upstream/master' into dark-scheme-overlay
Fabianopb May 15, 2019
0bf749b
Merge branch 'master' of github.com:facebook/create-react-app into da…
Fabianopb Oct 9, 2019
ebb270b
Merge branch 'master' into dark-scheme-overlay
ianschmitz Oct 23, 2019
8f0fd6d
Update initDOM.js
ianschmitz Oct 23, 2019
6d4411e
Update bug_report.md
ianschmitz Oct 23, 2019
6bcb410
Ignore flow errors
ianschmitz Oct 24, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix pre background in light theme.
  • Loading branch information
Fabianopb committed May 14, 2019
commit 195ec3f7643c3f5bea64fb483bc953386f285e84
2 changes: 1 addition & 1 deletion packages/react-error-overlay/src/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const lightTheme: Theme = {
headerColor: '#ce1126',
primaryPreBackground: 'rgba(206, 17, 38, 0.05)',
primaryPreColor: 'inherit',
secondaryPreBackground: 'rgba(198, 134, 38, 0.3)',
secondaryPreBackground: 'rgba(251, 245, 180, 0.3)',
secondaryPreColor: 'inherit',
footer: '#878e91',
anchorColor: '#878e91',
Expand Down