pull down to refresh

Made some simple jazzy house. I took some chords from "Light My Fire" by The Doors that inspired the organ section.
Listen here on strudel
//////////////////////////////////////////////////////////////////////////////////////////
//
// House Jazz
// @license CC BY-NC-SA 4.0 https://creativecommons.org/licenses/by-nc-sa/4.0/
// @by Bitcoin Graffiti
// @date Oct 5, 2025
//
//////////////////////////////////////////////////////////////////////////////////////////

setcpm(120/4)


const organ = note("[c4, e4, a4] <[d4, f#4, a4] [[d4, f#4, a4][e4, g4, a4, c4]]>").s("gm_epiano1:1").room(1).beat("1, 2.5, 4, < ~ 6>, 7", 8).color('teal')
const melody = n(" 7 [7 8] 7 <[9 5]!3 [11 8]>").scale("<A>:<major>").s("gm_pizzicato_strings:2").sometimes(ply("2")).gain(1).room(1).color('purple')

//percussion
const hh = s("hh!8").bank("TR909").decay(1).gain(.65).rarely(ply("2 | 4")).color('yellow')
const bd = s("bd:1!4").bank("TR909")
const sd = s("[~ sd:1]!2").bank("TR909").sometimes(ply("2")).gain(1.4)
const oh = s("~!3 [~ oh] ").bank("TR909").gain(.7)
const drums = stack(hh, bd, sd, oh).color('gold')


arrange(
  [4, stack(drums)],
  [4, stack(drums, melody)],
  [8, stack(drums, melody, organ)],
  
).pianoroll({labels: 1})

this territory is moderated