Skip to content

Commit bbdc428

Browse files
committed
feat: add C Major and D Dorian scale components with ABC notation player
1 parent 19926b3 commit bbdc428

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
import AbcjsPlayer from "astro-abcjs/AbcjsPlayer.astro";
3+
---
4+
5+
<AbcjsPlayer
6+
notation={`X:1\nT:C Major\nM:4/4\nL:1/4\nK:C\nC D E F | G A B c |`}
7+
showControls={true}
8+
responsive={true}
9+
abcjsVersion="6.6.0"
10+
/>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
import AbcjsPlayer from "astro-abcjs/AbcjsPlayer.astro";
3+
---
4+
5+
<AbcjsPlayer
6+
notation={`X:1\nT:D Dorian\nM:4/4\nL:1/4\nK:Ddor\nD E F G | A B c d |`}
7+
showControls={true}
8+
responsive={true}
9+
abcjsVersion="6.6.0"
10+
/>

src/content/blog/parallel-major-chords.md renamed to src/content/blog/parallel-major-chords.mdx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ keywords: ["music theory", "chords", "composition", "harmony", "parallel majors"
99

1010
Have you ever wondered how some of your favorite songs create such emotionally rich and unexpected chord progressions? Many composers and songwriters use a powerful technique that involves borrowing chords from different scales or modes. Today, we'll explore a specific approach called "parallel majors" that can immediately add new colors to your compositions.
1111

12+
import CMajorScale from '../../components/scales/CMajorScale.astro';
13+
import DDorianMode from '../../components/scales/DDorianMode.astro';
14+
15+
## Parallel Majors Example (ABC Notation)
16+
17+
Have you ever wondered how some of your favorite songs create such emotionally rich and unexpected chord progressions? Many composers and songwriters use a powerful technique that involves borrowing chords from different scales or modes. Today, we'll explore a specific approach called "parallel majors" that can immediately add new colors to your compositions.
18+
1219
## What Are Parallel Majors?
1320

1421
Before diving into parallel majors, let's establish some foundational concepts.
@@ -17,6 +24,14 @@ Before diving into parallel majors, let's establish some foundational concepts.
1724

1825
A mode is essentially a scale that starts on a different note of a parent major scale. For example, if we take the C major scale (C, D, E, F, G, A, B) but start on D instead, we get D Dorian mode (D, E, F, G, A, B, C).
1926

27+
---
28+
29+
<CMajorScale />
30+
31+
<DDorianMode />
32+
33+
---
34+
2035
The seven modes of the major scale are:
2136

2237
1. Ionian (major)

0 commit comments

Comments
 (0)