diff --git a/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.scss b/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.scss
index fbb071b522f88588229215cafa4a90492bce9f14..8b9d563e62c8be6fc16c42f729ec37ae93ada43e 100644
--- a/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.scss
+++ b/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.scss
@@ -148,7 +148,7 @@ mat-divider {
 .reset {
   margin: 25px auto auto auto;
   background-color: var(--secondary);
-  color: black;
+  color: var(--alt-surface);
   width: 100%;
 }
 .cloud-configuration-form{
diff --git a/src/app/components/shared/tag-cloud/tag-cloud.component.ts b/src/app/components/shared/tag-cloud/tag-cloud.component.ts
index cc6ecc592d871396767da7b70fe5a861060f6c3b..46112234d124228d21885bcbdfe4b40e10b807eb 100644
--- a/src/app/components/shared/tag-cloud/tag-cloud.component.ts
+++ b/src/app/components/shared/tag-cloud/tag-cloud.component.ts
@@ -79,7 +79,7 @@ type DefaultColors = [
 ];
 const defaultColors: DefaultColors = [
   'var(--secondary, greenyellow)',
-  '#f1f1f1',
+  '#c1c1c1',
   '#d98e49',
   '#ccca3c',
   '#83e761',
@@ -132,11 +132,11 @@ const getDefaultCloudParameters = (): CloudParameters => {
     backgroundColor: resDefaultColors[11],
     fontColor: resDefaultColors[0],
     fontSizeMin: 150,
-    fontSizeMax: 600,
-    hoverScale: 1.8,
-    hoverTime: 0.6,
-    hoverDelay: 0.1,
-    delayWord: 0.1,
+    fontSizeMax: 900,
+    hoverScale: 2,
+    hoverTime: 1,
+    hoverDelay: 0.4,
+    delayWord: 100,
     randomAngles: false,
     sortAlphabetically: false,
     textTransform: CloudTextStyle.capitalized,