Skip to content

Commit 714c453

Browse files
Darken a bit the website colors (#1669)
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. Co-authored-by: Jørgen Kalsnes Hagen <43886029+Snailedlt@users.noreply.github.com>
1 parent 2160753 commit 714c453

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/assets/css/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
@import url(https://fonts.googleapis.com/css?family=Damion);
55
:root {
66
/* color */
7-
--primaryColor: #60be86;
7+
--primaryColor: #3D9561;
88
--primaryColorDark: #2D804E;
9-
--primaryColorLight: #65d693;
9+
--primaryColorLight: #4AB475;
1010
--grey: #4c6857;
1111

1212
/* sizing */

docs/assets/js/script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ devicon.controller('IconListCtrl', function($scope, $http, $compile) {
4040

4141
// background color related stuff
4242
// default is the default site background color
43-
$scope.DEFAULT_BACKGROUND = "#60be86";
43+
$scope.DEFAULT_BACKGROUND = "#3D9561";
4444
$scope.fontBackground = $scope.DEFAULT_BACKGROUND;
4545
$scope.svgBackground = $scope.DEFAULT_BACKGROUND;
4646

0 commit comments

Comments
 (0)