diff --git a/lib/classification/classification.dart b/lib/classification/classification.dart
index dd2a8091a247cc5b510b8bb82553b2268869106c..4d97dabada92036a98958fa5de70843b5470fc68 100644
--- a/lib/classification/classification.dart
+++ b/lib/classification/classification.dart
@@ -24,7 +24,7 @@ class ClassificationPage extends StatefulWidget {
 class _ClassificationPageState extends State<ClassificationPage> {
 
   final String id = (FirebaseAuth.instance.currentUser?.uid.toString())!+'_genres';
-  Color _ambientBackgroundColor = Colors.green;
+  Color _ambientBackgroundColor = Colors.grey.withOpacity(0.5);
   String genreValue = '';
 
   bool _redSelected = false;
@@ -98,7 +98,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                                 child: _redSelected ?
                                 selectedColor("Red", Colors.red, Colors.white.withOpacity(0.9),
                                     "rock","latin", "blues",
-                                    'Starke Emotionen, Liebe, Energie') : noSelection("Red")
+                                    'Strong emotions, love, energie') : noSelection("Red")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -111,7 +111,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                             child: Container(
                                 child: _orangeSelected ?
                                 selectedColor("Orange", Colors.orange, Colors.white.withOpacity(0.9),
-                                    "soul", "jazz", "indie-pop", 'Wärme, Energie, Herbst') : noSelection("Orange")
+                                    "soul", "jazz", "indie-pop", 'warmth, energie, fall') : noSelection("Orange")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -124,7 +124,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                             child: Container(
                                 child: _yellowSelected ?
                                 selectedColor("Yellow", Colors.yellow, Colors.white,
-                                    "pop", "funk", "country", 'Freude, Optimismus, Wärme') : noSelection("Yellow")
+                                    "pop", "funk", "country", 'happiness, optimism, warmth') : noSelection("Yellow")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -137,7 +137,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                             child: Container(
                                 child: _greenSelected ?
                                 selectedColor("Green", Colors.green, Colors.white.withOpacity(0.9),
-                                    "ambient", "classical", "new-age", 'Ruhe, Wachstum, Natur') : noSelection("Green")
+                                    "ambient", "classical", "new-age", 'calmness, growth, nature') : noSelection("Green")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -150,7 +150,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                             child: Container(
                                 child: _whiteSelected ?
                                 selectedColor("White", Colors.white, Colors.grey.withOpacity(0.7),
-                                    "classical", "ambient", "piano", 'Reinheit, Frieden, Gelassenheit') : noSelection("White")
+                                    "classical", "ambient", "piano", 'calmness, peace, serenity') : noSelection("White")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -163,7 +163,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                             child: Container(
                                 child: _blueSelected ?
                                 selectedColor( "Blue", Colors.blue, Colors.white.withOpacity(0.9),
-                                    "blues", "rainy-day", "indie-pop", 'Ruhe, Gelassenheit, Traurigkeit') : noSelection("Blue")
+                                    "blues", "rainy-day", "indie-pop", 'calm, Gelassenheit, sadness') : noSelection("Blue")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -177,7 +177,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                                 child: _pinkSelected ?
                                 selectedColor(
                                     "Pink", Colors.pink, Colors.white.withOpacity(0.9),
-                                    "pop", "k-pop", "r-n-b", 'Romantik, Anmut, Nostalgie') : noSelection("Pink")
+                                    "pop", "k-pop", "r-n-b", 'romance, charm, nostalgia') : noSelection("Pink")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -190,7 +190,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                             child: Container(
                                 child: _purpleSelected ?
                                 selectedColor("Purple", Colors.purple, Colors.white.withOpacity(0.9),
-                                    "rock", "classical", "hip-hop", 'Luxus, Spiritualität, Ambition') : noSelection("Purple")
+                                    "rock", "classical", "hip-hop", 'luxury, spirituality, ambition') : noSelection("Purple")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -203,7 +203,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                             child: Container(
                                 child: _brownSelected ?
                                 selectedColor("Brown", Colors.brown, Colors.white.withOpacity(0.9),
-                                    "country", "folk", "reggae", 'Wärme, Geborgenheit, Nostalgie, Ruhe') : noSelection("Brown")
+                                    "country", "folk", "reggae", 'warmth, security, nostalgia, calm') : noSelection("Brown")
                             )
                             ,),
                           const SizedBox(height: 20,),
@@ -216,7 +216,7 @@ class _ClassificationPageState extends State<ClassificationPage> {
                             child: Container(
                                 child: _blackSelected ?
                                 selectedColor("Black", Colors.black87, Colors.white.withOpacity(0.7),
-                                    "metal", "classical", "rock", 'Melancholie, Macht, Edel') : noSelection("Black")
+                                    "metal", "classical", "rock", 'melancholy, power, noble') : noSelection("Black")
                             )
                             ,),
                           const SizedBox(height: 20,),