diff --git a/src/client/app/common/views/components/tag-cloud.vue b/src/client/app/common/views/components/tag-cloud.vue
index 6eb82bb711..5f2cc5276a 100644
--- a/src/client/app/common/views/components/tag-cloud.vue
+++ b/src/client/app/common/views/components/tag-cloud.vue
@@ -4,10 +4,9 @@
%fa:exclamation-circle%%i18n:@empty%
+ :spacing="1">
{{ text }}
@@ -51,7 +50,7 @@ export default Vue.extend({
const peak = Math.max.apply(null, this.tags.map(x => x.count));
const w = weight / peak;
- if (w == 1) {
+ if (w > 0.9) {
return this.$store.state.device.darkmode ? '#ff4e69' : '#ff4e69';
} else if (w > 0.5) {
return this.$store.state.device.darkmode ? '#3bc4c7' : '#3bc4c7';