Studio's Documentation section now populates from the bundle instead of staying empty. Same content as the existing README, trimmed for the in-app reader. Signed-off-by: flemming-it <sf@flemming.it>
35 lines
868 B
Markdown
35 lines
868 B
Markdown
# studio.theme.solarized
|
|
|
|
Theme-Hook-Plugin für F∆I Studio. Liefert Ethan Schoonovers
|
|
[Solarized](https://ethanschoonover.com/solarized/)-Palette
|
|
als Material-3-ColorScheme-Paar (Light + Dark).
|
|
|
|
## Capability
|
|
|
|
- `studio.theme.solarized@0.1.0`
|
|
|
|
## Implementierter Hook
|
|
|
|
- `theme(brightness) -> color-scheme`
|
|
|
|
Die anderen beiden Studio-Plugin-Hooks (`translate`,
|
|
`output-view`) liefern `PluginError::Declined` — dieses
|
|
Plugin macht nur Themes.
|
|
|
|
## Ausgabe
|
|
|
|
14 ARGB-Tokens pro Brightness in Material-3-Reihenfolge
|
|
(primary → on-primary → secondary → … → outline-variant).
|
|
Andere Brightness-Werte als `"light"` oder `"dark"` liefern
|
|
`PluginError::Declined`.
|
|
|
|
## Berechtigungen
|
|
|
|
Keine. Reines Konstanten-Lookup, kein I/O.
|
|
|
|
## Build
|
|
|
|
```bash
|
|
cargo build --release --target wasm32-wasip2
|
|
# Ausgabe: target/wasm32-wasip2/release/studio_theme_solarized.wasm
|
|
```
|