mirror of
https://github.com/eliasstepanik/strudel.git
synced 2026-01-11 21:58:37 +00:00
621 B
621 B
@strudel/widgets
adds UI widgets to codemirror
claviature
Patter.claviature renders a claviature.
example usage:
chord("<Em9 A7 D^7@2>").voicing().piano()
.claviature()
All claviature options will work.
Here is an example that uses all available options:
chord("<Em9 A7 D^7@2>").voicing().piano()
.color('cyan')
.claviature({
range: ['C1', 'C6'], // rendered note range
palette: ['cyan', 'magenta'],
stroke: 'black',
scaleX: 1, scaleY: 1,
upperHeight: 80,
lowerHeight: 50
})