browser: option to set window background color

This commit is contained in:
Robo 2015-10-21 15:47:28 +05:30
parent 73f4aa1113
commit 9411508d3e
4 changed files with 41 additions and 1 deletions

View file

@ -61,6 +61,13 @@ It creates a new `BrowserWindow` with native properties as set by the `options`.
key is pressed.
* `enable-larger-than-screen` Boolean - Enable the window to be resized larger
than screen.
* `background-color` String - Window's background color as Hexadecimal value.
```javascript
var win = new BrowserWindow({ width: 800, height: 600, 'background-color': '#66CD00' })
// #abc will be expanded to #aabbcc
var win = new BrowserWindow({ width: 800, height: 600, 'background-color': '#fff' })
```
* `dark-theme` Boolean - Forces using dark theme for the window, only works on
some GTK+3 desktop environments.
* `transparent` Boolean - Makes the window [transparent](frameless-window.md).