Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8 new themes added #236

Merged
merged 4 commits into from
Mar 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,19 @@ Add this to your homebridge `config.json` file
* `sudo` - [See below for details](#sudo-mode).
* `restart` - The command to run when a restart request is sent from the browser. If not populated it will just terminate the Homebridge process and let your process manager (like systemd) restart it.
* `temp` - The path to the file that can display your current CPU temperature in WEB UI. eg. `/sys/class/thermal/thermal_zone0/temp`
* `theme` - The colour scheme to use. Possible values: `red`, `pink`, `purple`, `indigo`, `blue`, `blue-grey`, `green`, `orange`. Defaults to `red`.
* `theme` - The colour scheme to use. Possible values:

| | |
|---------------|-------------------|
| `amber` | `grey` |
| `blue` | `indigo` |
| `blue-grey` | `navi-blue` |
| `brown` | `orange` |
| `cyan` | `pink` |
| `dark-mode` | `purple` |
| `deep-purple` | `red` (default) |
| `green` | `teal` |

* `ssl` - [See below for details](#enabling-ssl)

## Accessory Control
Expand Down
12 changes: 10 additions & 2 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,15 @@
{ "title": "Blue", "enum": ["blue"] },
{ "title": "Blue-grey", "enum": ["blue-grey"] },
{ "title": "Green", "enum": ["green"] },
{ "title": "Orange", "enum": ["orange"] }
{ "title": "Orange", "enum": ["orange"] },
{ "title": "Grey", "enum": ["grey"] },
{ "title": "Brown", "enum": ["brown"] },
{ "title": "Amber", "enum": ["amber"] },
{ "title": "Teal", "enum": ["teal"] },
{ "title": "Navi-blue", "enum": ["navi-blue"] },
{ "title": "Cyan", "enum": ["cyan"] },
{ "title": "Deep-purple", "enum": ["deep-purple"] },
{ "title": "Dark-mode", "enum": ["dark-mode"] }
],
"required": true
},
Expand Down Expand Up @@ -241,4 +249,4 @@
]
}
]
}
}
Loading