diff options
author | Joris | 2024-04-05 20:44:08 +0200 |
---|---|---|
committer | Joris | 2024-04-05 20:44:08 +0200 |
commit | 57bf8e693727e63e7acc1aa2780c19948dc8de06 (patch) | |
tree | 087d302f194c99e02e2cacd2d1a7abf11329c9e7 /songs/rem | |
parent | aae7e39dc5b5e6c61247fdb5b2b36a2e5a9bcaaa (diff) |
Represent chords with clearer ascii characters
Diffstat (limited to 'songs/rem')
-rw-r--r-- | songs/rem/losing-my-religion.lisp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/songs/rem/losing-my-religion.lisp b/songs/rem/losing-my-religion.lisp index 4dc8ffb..39d13e2 100644 --- a/songs/rem/losing-my-religion.lisp +++ b/songs/rem/losing-my-religion.lisp @@ -1,32 +1,32 @@ (song (title "Losing My Religion") (from "R.E.M.") - (tonality "Am") + (tonality "Aₘ") (chords ("Intro / Refrain" - (F (F G) "Am" %) - (F (F G) "Am" G)) + (F (F G) "Aₘ" %) + (F (F G) "Aₘ" G)) (verse - ("Am" % "Em" %) - ("Am" % "Em" %) - ("Am" % "Em" %) - ("Dm" % G %)) + ("Aₘ" % "Eₘ" %) + ("Aₘ" % "Eₘ" %) + ("Aₘ" % "Eₘ" %) + ("Dₘ" % G %)) (bridge - ("Am" G F G) - (C "Dm" C "Dm")) + ("Aₘ" G F G) + (C "Dₘ" C "Dₘ")) ("Refrain 3" - (F (F G) "Am" %) - (F (F G) "Am" %) - (F (F G) "Am" %) - (F (F G) "Am" G)) + (F (F G) "Aₘ" %) + (F (F G) "Aₘ" %) + (F (F G) "Aₘ" %) + (F (F G) "Aₘ" G)) (outro :repeat 8 - ("Am"))) + ("Aₘ"))) (lyrics (intro) |