Create styles.py
Browse files
styles.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
STYLES = {
|
| 2 |
+
|
| 3 |
+
"nasheed": """
|
| 4 |
+
Islamic vocal style nasheed,
|
| 5 |
+
spiritual atmosphere,
|
| 6 |
+
no musical instruments,
|
| 7 |
+
warm emotional tone
|
| 8 |
+
""",
|
| 9 |
+
|
| 10 |
+
"cinematic": """
|
| 11 |
+
epic cinematic orchestral background,
|
| 12 |
+
film score mood,
|
| 13 |
+
emotional and inspirational
|
| 14 |
+
""",
|
| 15 |
+
|
| 16 |
+
"lofi": """
|
| 17 |
+
lofi chill background music,
|
| 18 |
+
soft ambience,
|
| 19 |
+
relaxed study atmosphere
|
| 20 |
+
"""
|
| 21 |
+
}
|