aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris2024-05-24 21:47:30 +0200
committerJoris2024-05-24 21:48:37 +0200
commit0c8f9f8b088ccae1c8453ce81c7adb6c185b3ddd (patch)
tree4b2586b939a0960348a3f87f43dfd5013f54846a
parent2399470b2bca75fcadf968dc4c146e1dd4e5732b (diff)
Shania Twain, You’re the one
-rw-r--r--songs/shania-twain/you-re-the-one.lisp80
-rw-r--r--src/main.lisp1
2 files changed, 81 insertions, 0 deletions
diff --git a/songs/shania-twain/you-re-the-one.lisp b/songs/shania-twain/you-re-the-one.lisp
new file mode 100644
index 0000000..4411367
--- /dev/null
+++ b/songs/shania-twain/you-re-the-one.lisp
@@ -0,0 +1,80 @@
+(song
+ (title "You’re the one")
+ (from "Shania Twain")
+ (tonality "E♭")
+
+ (chords
+ ("Intro / Refrain"
+ ("E♭" ("A♭" "B♭")))
+
+ (verse
+ :repeat 3
+ ("E♭" ("A♭" "B♭")))
+
+ (pre-chorus
+ :repeat 2
+ (("E♭" "A♭") "B♭"))
+
+ (chorus
+ :repeat 2
+ (("E♭" "A♭") ("Fₘ" "B♭"))
+ (("E♭" "A♭") "B♭"))
+
+ (interlude
+ :repeat 2
+ ("E♭" ("A♭" "B♭"))))
+
+ (lyrics
+ (intro)
+
+ (verse
+ "Looks like we made it,
+ Look how far we’ve come my baby.
+ We mighta took the long way,
+ We knew we’d get there someday.")
+
+ (pre-chorus
+ "They said, “I bet, they’ll never make it”.
+ But just look at us holdin’ on.
+ We’re still together, still goin’ strong.")
+
+ (chorus
+ "You’re still the one I run to,
+ The one that I belong to,
+ You’re still the one I want for life.
+ You’re still the one that I love,
+ The only one I dream of,
+ You’re still the one I kiss goodnight.")
+
+ (verse
+ "Ain’t nothin’ better,
+ We beat the odds together.
+ I’m glad we didn’t listen,
+ Look at what we would be missin.")
+
+ (pre-chorus
+ "They said, “I bet, they’ll never make it”.
+ But just look at us holdin’ on.
+ We’re still together, still goin’ strong.")
+
+ (chorus
+ "You’re still the one I run to,
+ The one that I belong to,
+ You’re still the one I want for life.
+ You’re still the one that I love,
+ The only one I dream of,
+ You’re still the one I kiss goodnight.")
+
+ (interlude)
+
+ (chorus
+ "You’re still the one I run to,
+ The one that I belong to,
+ You’re still the one I want for life.
+ You’re still the one that I love,
+ The only one I dream of,
+ You’re still the one I kiss goodnight.")
+
+ (outro
+ "I’m so glad we made it,
+ Look how far we’ve come my baby.")))
diff --git a/src/main.lisp b/src/main.lisp
index 913ae97..70b1bab 100644
--- a/src/main.lisp
+++ b/src/main.lisp
@@ -60,6 +60,7 @@
('intro "Intro")
('verse "Couplet")
('chorus "Refrain")
+ ('pre-chorus "Pré-refrain")
('interlude "Interlude")
('solo "Solo")
('bridge "Pont")