Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jvzaniolo/hyper-sync-color-scheme
A Hyper plugin to sync your color scheme with your system's appearance.
https://github.com/jvzaniolo/hyper-sync-color-scheme
hyper plugin
Last synced: 10 days ago
JSON representation
A Hyper plugin to sync your color scheme with your system's appearance.
- Host: GitHub
- URL: https://github.com/jvzaniolo/hyper-sync-color-scheme
- Owner: jvzaniolo
- License: mit
- Created: 2024-03-25T15:29:59.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-25T16:27:42.000Z (8 months ago)
- Last Synced: 2024-10-10T01:50:00.190Z (about 1 month ago)
- Topics: hyper, plugin
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hyper Sync Color Scheme
A Hyper plugin to sync your color scheme with your system's appearance.
## Installation
Install the plugin with the following command:
```bash
hyper i hyper-sync-color-scheme
```Then, whenever you change your system's appearance, hard reload Hyper to apply the new color scheme.
## Configuration
You can configure the plugin by adding a `colorScheme` key to your `config` object in `~/.hyper.js`.
```js
config: {
colorScheme: {
dark: 'One Dark',
light: 'One Light'
},
profiles: []
}
```The `colorScheme` object should contain two keys: `dark` and `light`. The values should be the names of the profiles you want to use when your system is in dark and light mode, respectively.
```js
config: {
colorScheme: {
dark: 'One Dark',
light: 'One Light'
},
profiles: [
{
name: "One Dark",
colors: {
// ...
},
},
{
name: "One Light",
colors: {
// ...
},
},
];
}
```## License
MIT