From 04a2142588ef6d448ee530076939ea6e269953a6 Mon Sep 17 00:00:00 2001 From: David Leal Date: Wed, 8 Feb 2023 02:02:03 +0000 Subject: [PATCH] Darken a bit the website colors This fixes the issue of the invisible Devicon logo. It could be fixed by changing the background color manually, but I think we should have it fixed by default. --- docs/assets/css/style.css | 4 ++-- docs/assets/js/script.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/assets/css/style.css b/docs/assets/css/style.css index 37f6cb7b2..b16c1d0e3 100644 --- a/docs/assets/css/style.css +++ b/docs/assets/css/style.css @@ -4,9 +4,9 @@ @import url(https://fonts.googleapis.com/css?family=Damion); :root { /* color */ - --primaryColor: #60be86; + --primaryColor: #3D9561; --primaryColorDark: #2D804E; - --primaryColorLight: #65d693; + --primaryColorLight: #4AB475; --grey: #4c6857; /* sizing */ diff --git a/docs/assets/js/script.js b/docs/assets/js/script.js index b719b187e..2fb5cd5bd 100644 --- a/docs/assets/js/script.js +++ b/docs/assets/js/script.js @@ -40,7 +40,7 @@ devicon.controller('IconListCtrl', function($scope, $http, $compile) { // background color related stuff // default is the default site background color - $scope.DEFAULT_BACKGROUND = "#60be86"; + $scope.DEFAULT_BACKGROUND = "#3D9561"; $scope.fontBackground = $scope.DEFAULT_BACKGROUND; $scope.svgBackground = $scope.DEFAULT_BACKGROUND;