docs: background-color is Linux-only for now

This commit is contained in:
Cheng Zhao 2015-10-22 14:16:17 +08:00
parent 15e0248d82
commit f7840e7379

View file

@ -61,13 +61,8 @@ 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' })
```
* `background-color` String - Window's background color as Hexadecimal value,
like `#66CD00` or `#FFF`. This is only implemented on Linux.
* `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).