aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_plugins/generate-favicon.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/_plugins/generate-favicon.rb b/_plugins/generate-favicon.rb
index 08de8b2..ee443a3 100644
--- a/_plugins/generate-favicon.rb
+++ b/_plugins/generate-favicon.rb
@@ -10,7 +10,7 @@ module Jekyll
png = 'static/favicon.png'
unless File.exist? png then
puts "Missing '#{png}', generating..."
- puts `inkscape -o #{png} -w #{SIZE} -h #{SIZE} #{svg}`
+ puts `inkscape -o #{png} -w #{SIZE} -h #{SIZE} -b white #{svg}`
site.static_files << Jekyll::StaticFile.new(site, site.source, '', png)
end