Razer Chroma support plugin for Bevy. So far only tested in WASM.
See examples directory for usage.
General flow is that you need to register efffects, and then you can use them.
Create an instance of the ChromaPlugin and add it to your App, then you can use the Chroma parameter to create effects.
```rust fn redmouse(mut chroma: Chroma) { let redhandle = chroma.create_effect(Effect::Mouse(MouseEffect::Static { color: Color::RED.into(), }));
chroma.apply_effect(&red_handle);
} ```