[styling] use arduino theme background color from start

This commit is contained in:
Sven Efftinge 2019-07-24 15:00:01 +00:00
parent 4ced8237f7
commit 835107b5a6

View File

@ -1,41 +1,46 @@
{ {
"private": true, "private": true,
"name": "arduino-ide-browser", "name": "arduino-ide-browser",
"version": "0.0.1", "version": "0.0.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@theia/core": "next", "@theia/core": "next",
"@theia/editor": "next", "@theia/editor": "next",
"@theia/file-search": "next", "@theia/file-search": "next",
"@theia/filesystem": "next", "@theia/filesystem": "next",
"@theia/languages": "next", "@theia/languages": "next",
"@theia/messages": "next", "@theia/messages": "next",
"@theia/monaco": "next", "@theia/monaco": "next",
"@theia/navigator": "next", "@theia/navigator": "next",
"@theia/preferences": "next", "@theia/preferences": "next",
"@theia/process": "next", "@theia/process": "next",
"@theia/terminal": "next", "@theia/terminal": "next",
"@theia/workspace": "next", "@theia/workspace": "next",
"@theia/textmate-grammars": "next", "@theia/textmate-grammars": "next",
"arduino-ide-extension": "0.0.1" "arduino-ide-extension": "0.0.1"
}, },
"devDependencies": { "devDependencies": {
"@theia/cli": "next" "@theia/cli": "next"
}, },
"scripts": { "scripts": {
"prepare": "theia build --mode development", "prepare": "theia build --mode development",
"start": "theia start --root-dir=../workspace", "start": "theia start --root-dir=../workspace",
"watch": "theia build --watch --mode development" "watch": "theia build --watch --mode development"
}, },
"theia": { "theia": {
"frontend": { "frontend": {
"config": { "config": {
"applicationName": "Arduino-PoC", "applicationName": "Arduino-PoC",
"defaultTheme": "arduino-theme", "defaultTheme": "arduino-theme",
"preferences": { "preferences": {
"editor.autoSave": "on" "editor.autoSave": "on"
}
}
} }
}
},
"generator": {
"config": {
"preloadTemplate": "<div class='theia-preload' style='background-color: rgb(237, 241, 242);'></div>"
}
} }
}
} }