Archived
1
0

Set background color using VS Code theme

This commit is contained in:
Asher
2020-03-27 16:58:50 -05:00
parent 87ebf03eb7
commit 7954656610
2 changed files with 16 additions and 2 deletions

View File

@ -100,4 +100,11 @@
<script>
require(["vs/code/browser/workbench/workbench"], function() {})
</script>
<script>
try {
document.body.style.background = JSON.parse(localStorage.getItem("colorThemeData")).colorMap["editor.background"]
} catch (error) {
// Oh well.
}
</script>
</html>