-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add custom color settings to VSCode configuration and improve c…
…omments in fetchBlock and parser files
- Loading branch information
1 parent
a4caf6d
commit 568d664
Showing
3 changed files
with
46 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,27 @@ | ||
{ | ||
"deno.enable": true, | ||
"deno.unstable": true | ||
"deno.unstable": true, | ||
"workbench.colorCustomizations": { | ||
"activityBar.activeBackground": "#a98bf1", | ||
"activityBar.background": "#a98bf1", | ||
"activityBar.foreground": "#15202b", | ||
"activityBar.inactiveForeground": "#15202b99", | ||
"activityBarBadge.background": "#f8d5c6", | ||
"activityBarBadge.foreground": "#15202b", | ||
"commandCenter.border": "#e7e7e799", | ||
"editorGroup.border": "#a98bf1", | ||
"sash.hoverBorder": "#a98bf1", | ||
"statusBar.background": "#875dec", | ||
"statusBar.debuggingBackground": "#c2ec5d", | ||
"statusBar.debuggingForeground": "#15202b", | ||
"statusBar.foreground": "#e7e7e7", | ||
"statusBarItem.hoverBackground": "#a98bf1", | ||
"statusBarItem.remoteBackground": "#875dec", | ||
"statusBarItem.remoteForeground": "#e7e7e7", | ||
"titleBar.activeBackground": "#875dec", | ||
"titleBar.activeForeground": "#e7e7e7", | ||
"titleBar.inactiveBackground": "#875dec99", | ||
"titleBar.inactiveForeground": "#e7e7e799" | ||
}, | ||
"peacock.color": "#875dec" | ||
} |
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