diff --git a/app/src/main/res/layout/mood_fragment.xml b/app/src/main/res/layout/mood_fragment.xml
index 622421ebb05b845f534053b8eefa7fc72fe7b3ec..b5ed7fb9ee061e5139feb41842432e7ad583e706 100644
--- a/app/src/main/res/layout/mood_fragment.xml
+++ b/app/src/main/res/layout/mood_fragment.xml
@@ -9,14 +9,48 @@
 >
     <TextView android:layout_width="wrap_content"
               android:layout_height="wrap_content" android:text="@string/personal_state"/>
-    <Button android:id="@+id/mood_chaos" android:layout_width="wrap_content" android:layout_height="wrap_content"
-            android:text="@string/chaos"/>
-    <Button android:id="@+id/mood_communication" android:layout_width="wrap_content" android:layout_height="wrap_content"
-            android:text="@string/communication"/>
-    <Button android:id="@+id/mood_camp" android:layout_width="wrap_content" android:layout_height="wrap_content"
-            android:text="@string/camp"/>
-    <Button android:id="@+id/no_contact" android:layout_width="wrap_content" android:layout_height="wrap_content"
-            android:text="@string/no_contact"/>
-    <Button android:id="@+id/no_state" android:layout_width="wrap_content" android:layout_height="wrap_content"
-            android:text="@string/off"/>
+
+    <Button
+        android:id="@+id/mood_chaos"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:backgroundTint="#0076BA"
+        android:text="@string/chaos"
+        android:textColor="#005383"
+        android:textSize="30sp" />
+
+    <Button
+        android:id="@+id/mood_communication"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:backgroundTint="#ffc600"
+        android:text="@string/communication"
+        android:textColor="#d39a00"
+        android:textSize="30sp" />
+
+    <Button
+        android:id="@+id/mood_camp"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:backgroundTint="#99ba00"
+        android:text="@string/camp"
+        android:textColor="#6f8700"
+        android:textSize="30sp" />
+
+    <Button
+        android:id="@+id/no_state"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:text="@string/off"
+        android:textColor="#939393"
+        android:textSize="30sp" />
+
+    <Button
+        android:id="@+id/no_contact"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:backgroundTint="#ff0000"
+        android:text="@string/no_contact"
+        android:textColor="#BA0000"
+        android:textSize="30sp" />
 </LinearLayout>