diff options
Diffstat (limited to 'templates/progress.html')
-rw-r--r-- | templates/progress.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/progress.html b/templates/progress.html index 081f1d9..e881a90 100644 --- a/templates/progress.html +++ b/templates/progress.html @@ -6,9 +6,9 @@ <script> -var r = Math.floor(Math.random() * Math.floor(125)); -var g = Math.floor(Math.random() * Math.floor(125)); -var b = Math.floor(Math.random() * Math.floor(125)); +var r = Math.floor(Math.random() * Math.floor(100)); +var g = Math.floor(Math.random() * Math.floor(100)); +var b = Math.floor(Math.random() * Math.floor(100)); document.body.style.backgroundColor = 'rgba('+r+','+g+','+b+',0.1)' var source = new EventSource("/search"); |