aboutsummaryrefslogtreecommitdiff
path: root/_plugins
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-01-10 15:17:17 -0300
committerEuAndreh <eu@euandre.org>2022-01-10 15:17:17 -0300
commit30f0209eec2e3276b3141adfcbc80b723109b5ef (patch)
treef18e4436ad57e8af1acbc8f0fe1e371fb462f75a /_plugins
parentTODOs.md: Add #td-f9b510c0-c2c5-638e-e00f-3bbd35de31d9 (diff)
downloadeuandre.org-30f0209eec2e3276b3141adfcbc80b723109b5ef.tar.gz
euandre.org-30f0209eec2e3276b3141adfcbc80b723109b5ef.tar.xz
_plugins/generate-favicon.rb: Make the background of the PNG white
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