diff --git a/.gitignore b/.gitignore
index c99872f9c1..0ad1c733b9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -122,6 +122,7 @@ i18n_status.csv
 
 # Don't actually ignore any of these files, since we need them in the tree
 !resources/linux/icons/hicolor/**/**/*
+!resources/linux/icons-nightly/hicolor/**/**/*
 !CMakeModules/**/*
 !bitmaps_png/png/**/*
 
diff --git a/bitmaps_png/mk_icn_res.sh b/bitmaps_png/mk_icn_res.sh
old mode 100644
new mode 100755
index 089b8708f5..af7fbeef22
--- a/bitmaps_png/mk_icn_res.sh
+++ b/bitmaps_png/mk_icn_res.sh
@@ -2,55 +2,71 @@
 #
 # make icons using Inkscape
 
+ICON="kicad
+      pcbnew
+      eeschema
+      gerbview
+      bitmap2component
+      pcbcalculator"
+
+SIZE="16x16
+      24x24
+      32x32
+      48x48
+      64x64
+      128x128"
+
 # create output directories
-rm -r ../resources/linux/mime/icons/hicolor/*
-mkdir -p ../resources/linux/mime/icons/hicolor/scalable
-cd ../resources/linux/mime/icons/hicolor
+rm -r ../resources/linux/icons/hicolor/*
+rm -r ../resources/linux/icons-nightly/hicolor/*
+
+mkdir -p ../resources/linux/icons/hicolor/scalable/mimetypes ../resources/linux/icons/hicolor/scalable/apps
+mkdir -p ../resources/linux/icons-nightly/hicolor/scalable/apps
+
 echo -e '\E[0;34m'"Directory \"scalable\" for .svg icons was created."
+tput sgr0
 
 # copy sources to the scalable dir
-cd ../../../../../bitmaps_png/sources
-cp icon_kicad.svg ../../resources/linux/mime/icons/hicolor/scalable/kicad.svg
-cp icon_pcbnew.svg ../../resources/linux/mime/icons/hicolor/scalable/pcbnew.svg
-cp icon_eeschema.svg ../../resources/linux/mime/icons/hicolor/scalable/eeschema.svg
-echo -e '\E[0;34m'"Sources of icons was copied."
+cp ./sources/light/icon_kicad.svg ../resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-project.svg
+cp ./sources/light/icon_pcbnew.svg ../resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb.svg
+cp ./sources/light/icon_eeschema.svg ../resources/linux/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic.svg
 
-# convert .svg files into .png files
-cd ../../resources/linux/mime/icons/hicolor/scalable
-
-SIZES="16x16
-       22x22
-       24x24
-       32x32
-       48x48"
-
-for size in $SIZES
+for icon in $ICON
 do
-    sz=${size%x*}
-    echo -e '\E[0;32m'"\nMaking the mimetypes icons with size $size."
-    mkdir ../$size
-    echo -e '\E[0;34m'"Directory $size was created."
-    mkdir ../$size/mimetypes
-    echo -e '\E[0;34m'"Subdirectory \"mimetypes\" was created."
-    tput sgr0
-
-    inkscape -f kicad.svg -e ../$size/mimetypes/application-x-kicad-project.png -w $sz -h $sz --export-area-snap
-    inkscape -f eeschema.svg -e ../$size/mimetypes/application-x-kicad-eeschema.png -w $sz -h $sz --export-area-snap
-    inkscape -f pcbnew.svg -e ../$size/mimetypes/application-x-kicad-pcbnew.png -w $sz -h $sz --export-area-snap
-    echo -e '\E[0;34m'"Icons with size $size was created."
-
-    if [ $sz -eq 48 ]
-    then
-        echo -e '\E[0;32m'"\nMaking the applications icons with size $size."
-        mkdir ../$size/apps
-        echo -e '\E[0;34m'"Subdirectory \"apps\" was created."
-        tput sgr0
-
-        inkscape -f kicad.svg -e ../$size/apps/kicad.png -w $sz -h $sz --export-area-snap
-        inkscape -f eeschema.svg -e ../$size/apps/eeschema.png -w $sz -h $sz --export-area-snap
-        inkscape -f pcbnew.svg -e ../$size/apps/pcbnew.png -w $sz -h $sz --export-area-snap
-        echo -e '\E[0;34m'"Icons with size $size was created."
-        tput sgr0
-    fi
+    cp ./sources/light/icon_$icon.svg ../resources/linux/icons/hicolor/scalable/apps/$icon.svg
 done
 
+cp ./sources/light/icon_kicad_nightly.svg ../resources/linux/icons-nightly/hicolor/scalable/apps/kicad.svg
+
+echo -e '\E[0;34m'"Sources of icons were copied."
+tput sgr0
+
+# convert .svg files into .png files
+for size in $SIZE
+do
+    sz=${size%x*}
+
+    source_sz=""
+
+    if [ $sz -le 32 ]
+    then
+        source_sz="_$sz"
+    fi
+
+	echo -e '\E[0;32m'"\nMaking icons with size $size from \"source$source_sz\"."
+    tput sgr0
+
+    mkdir -p ../resources/linux/icons/hicolor/$size/mimetypes ../resources/linux/icons/hicolor/$size/apps
+    mkdir -p ../resources/linux/icons-nightly/hicolor/$size/apps
+
+    inkscape -o ../resources/linux/icons/hicolor/$size/mimetypes/application-x-kicad-project.png -w $sz -h $sz --export-area-snap ./sources/light/icon_kicad${source_sz}.svg
+    inkscape -o ../resources/linux/icons/hicolor/$size/mimetypes/application-x-kicad-pcb.png -w $sz -h $sz --export-area-snap ./sources/light/icon_pcbnew${source_sz}.svg
+    inkscape -o ../resources/linux/icons/hicolor/$size/mimetypes/application-x-kicad-schematic.png -w $sz -h $sz --export-area-snap ./sources/light/icon_eeschema${source_sz}.svg
+
+    for icon in $ICON
+    do
+        inkscape -o ../resources/linux/icons/hicolor/$size/apps/$icon.png -w $sz -h $sz --export-area-snap ./sources/light/icon_${icon}${source_sz}.svg
+    done
+    inkscape -o ../resources/linux/icons-nightly/hicolor/$size/apps/kicad.png -w $sz -h $sz --export-area-snap ./sources/light/icon_kicad_nightly${source_sz}.svg
+
+done
diff --git a/bitmaps_png/sources/CREDITS b/bitmaps_png/sources/CREDITS
index c0ac8728a9..fe1f104208 100644
--- a/bitmaps_png/sources/CREDITS
+++ b/bitmaps_png/sources/CREDITS
@@ -4,4 +4,6 @@ Original KiCad Icon work by Inigo Zuluaga and Fabrizio Tappero among others
 
 KiCad icons were redesigned in 2020 by Aleksandr Zyrianov
 
+KiCad nightly icon reworked by Rafael Silva based on the 2020 redesign
+
 License: CC-BY-SA 4.0
\ No newline at end of file
diff --git a/bitmaps_png/sources/dark/icon_kicad_24.svg b/bitmaps_png/sources/dark/icon_kicad_24.svg
new file mode 100644
index 0000000000..ef6cd87134
--- /dev/null
+++ b/bitmaps_png/sources/dark/icon_kicad_24.svg
@@ -0,0 +1,213 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 24 23.999999"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_24.svg"
+   width="24"
+   height="24"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:title>app_icon</dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="22.627417"
+     inkscape:cx="6.4081552"
+     inkscape:cy="8.905126"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:document-rotation="0"
+     inkscape:pagecheckerboard="0"
+     units="px"
+     width="24mm"
+     height="24px"
+     viewbox-x="0"
+     viewbox-width="24">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-2.8822235,0.44065839)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-0.52513612,0.9350659,0,1.5836455,38.923106)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-2.3004735,0.80059739)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-0.84885246,0.80059739)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-2.8773487"
+       width="52.443409"
+       height="52.513618"
+       rx="11.654079"
+       id="rect5459"
+       y="0.44065806"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:3.29088" />
+    <rect
+       class="cls-9"
+       x="-2.8773487"
+       width="52.443409"
+       height="52.513618"
+       rx="11.654079"
+       id="rect5461"
+       y="0.44065806"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:3.29088" />
+    <path
+       class="cls-11"
+       d="m 14.029721,24.229284 5.823429,-7.375273 q 1.785016,-2.255357 1.785382,-3.37274 A 1.7190949,1.7213964 0 0 0 21.537117,12.8311 H 31.70254 a 11.591566,11.607084 0 0 0 -2.898391,2.744834 q -0.547719,0.65054 -1.642212,2.0129 l -7.633611,9.504963 9.110679,12.556374 q 0.648619,0.894306 2.10985,2.560089 a 9.7865684,9.799671 0 0 0 0.994326,0.873513 H 21.314075 a 3.3326736,3.337135 0 0 0 0.12135,-0.833129 q 0,-1.116807 -1.541837,-3.230428 l -5.863867,-8.004755 v 8.106369 q 0,2.824236 1.136395,3.961995 H 5.6295456 A 3.6226329,3.6274828 0 0 0 6.6443253,41.275572 12.350421,12.366956 0 0 0 6.7659408,39.142364 V 16.772772 A 12.356138,12.37268 0 0 0 6.6443253,14.639562 3.6238393,3.6286906 0 0 0 5.6295456,12.831309 h 9.5365704 q -1.136395,1.137918 -1.136395,3.941463 z"
+       id="path5475"
+       style="stroke-width:3.29088" />
+    <path
+       class="cls-11"
+       d="m 43.410406,20.856599 v 18.651364 c -0.01944,0.637746 0.0076,1.276062 0.08093,1.909868 0.11664,0.626361 0.41274,1.205212 0.852207,1.665994 h -9.606547 c 0.439195,-0.460974 0.735252,-1.039741 0.852205,-1.665994 0.07199,-0.633909 0.09903,-1.272131 0.08093,-1.909868 V 24.391761 c 0.01882,-0.63091 -0.0083,-1.262355 -0.08093,-1.889334 -0.11829,-0.615694 -0.406554,-1.185867 -0.832068,-1.645828 z M 39.200601,10.23052 c 2.238483,0.0067 4.051465,1.822129 4.058175,4.063609 -0.0033,5.414637 -8.119323,5.414637 -8.116035,0 -0.02216,-2.253273 1.807597,-4.085625 4.05786,-4.063609 z"
+       id="path5477"
+       style="stroke-width:3.29088"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <path
+       class="cls-12"
+       d="m 14.029721,24.229284 5.823429,-7.375273 q 1.785016,-2.255357 1.785382,-3.37274 A 1.7190949,1.7213964 0 0 0 21.537117,12.8311 H 31.70254 a 11.591566,11.607084 0 0 0 -2.898391,2.744834 q -0.547719,0.65054 -1.642212,2.0129 l -7.633611,9.504963 9.110679,12.556374 q 0.648619,0.894306 2.10985,2.560089 a 9.7865684,9.799671 0 0 0 0.994326,0.873513 H 21.314075 a 3.3326736,3.337135 0 0 0 0.12135,-0.833129 q 0,-1.116807 -1.541837,-3.230428 l -5.863867,-8.004755 v 8.106369 q 0,2.824236 1.136396,3.961995 H 5.6295456 A 3.6226329,3.6274828 0 0 0 6.6443253,41.275572 12.350421,12.366956 0 0 0 6.7659408,39.142364 V 16.772772 A 12.356138,12.37268 0 0 0 6.6443253,14.639562 3.6238393,3.6286906 0 0 0 5.6295456,12.831309 h 9.5365714 q -1.136396,1.137918 -1.136396,3.941463 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:3.29088" />
+    <path
+       class="cls-12"
+       d="m 43.410406,20.856599 v 18.651364 c -0.01944,0.637746 0.0076,1.276062 0.08093,1.909868 0.11664,0.626361 0.41274,1.205212 0.852207,1.665994 h -9.606547 c 0.439195,-0.460974 0.735252,-1.039741 0.852205,-1.665994 0.07199,-0.633909 0.09903,-1.272131 0.08093,-1.909868 V 24.391761 c 0.01882,-0.63091 -0.0083,-1.262355 -0.08093,-1.889334 -0.11829,-0.615694 -0.406554,-1.185867 -0.832068,-1.645828 z M 39.200601,10.23052 c 2.238483,0.0067 4.051465,1.822129 4.058175,4.063609 -0.0033,5.414637 -8.119323,5.414637 -8.116035,0 -0.02216,-2.253273 1.807597,-4.085625 4.05786,-4.063609 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:3.29088"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:6.56367"
+       transform="matrix(0.33520771,0,0,0.3333,-2.0009489,1.5109713)" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:6.58176;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="39.442226"
+       cy="14.379181"
+       ry="4.2486978"
+       rx="4.2430172" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/dark/icon_kicad_nightly.svg b/bitmaps_png/sources/dark/icon_kicad_nightly.svg
new file mode 100755
index 0000000000..a4e8a18d42
--- /dev/null
+++ b/bitmaps_png/sources/dark/icon_kicad_nightly.svg
@@ -0,0 +1,234 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 48 48"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly.svg"
+   width="48"
+   height="48"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>app_icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="8"
+     inkscape:cx="20"
+     inkscape:cy="15.1875"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:pagecheckerboard="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.57473315,2.6764188)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-1.0083645,1.795196,0,7.9991129,76.570283)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#Безымянный_градиент_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#Безымянный_градиент_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-0.56537002"
+       width="100.68402"
+       height="100.83646"
+       rx="22.374205"
+       id="rect5459"
+       y="2.676419"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.19392" />
+    <rect
+       class="cls-9"
+       x="-0.56537002"
+       width="100.68402"
+       height="100.83646"
+       rx="22.374205"
+       id="rect5461"
+       y="2.676419"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="M 30.906233,47.638291 42.086387,33.476316 q 3.426981,-4.330725 3.427686,-6.476323 A 3.300422,3.305419 0 0 0 45.31935,25.751537 h 19.516187 a 22.254188,22.287881 0 0 0 -5.564503,5.270621 Q 58.21949,32.27132 56.118215,34.88732 L 41.46275,53.138718 58.95398,77.249421 q 1.24526,1.717244 4.050619,4.915877 a 18.788845,18.817293 0 0 0 1.908969,1.677314 H 44.891141 a 6.3982678,6.4079551 0 0 0 0.232984,-1.59977 q 0,-2.144489 -2.960111,-6.203056 L 30.906233,60.669084 v 15.565821 q 0,5.423085 2.181721,7.607808 H 14.77907 a 6.9549497,6.9654798 0 0 0 1.948235,-3.472203 23.711085,23.746985 0 0 0 0.233486,-4.096178 V 33.320321 A 23.722061,23.757976 0 0 0 16.727305,29.224143 6.9572655,6.967799 0 0 0 14.77907,25.75194 h 18.308884 q -2.181721,2.185026 -2.181721,7.568381 z"
+       id="path5475"
+       style="stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="m 83.222955,41.16207 v 35.814285 a 25.157009,25.195098 0 0 0 0.155357,3.667322 6.2958722,6.3054043 0 0 0 1.636115,3.199036 H 67.874383 a 6.3068468,6.3163955 0 0 0 1.636115,-3.199036 25.895022,25.934228 0 0 0 0.155355,-3.667322 V 47.950279 A 24.950506,24.988281 0 0 0 69.510498,44.322385 6.4313929,6.4411302 0 0 0 67.913045,41.16207 Z M 76.443901,20.757914 a 7.8145899,7.8264215 0 0 1 7.791131,7.802927 7.7908285,7.8026241 0 0 1 -15.581657,0 7.7155168,7.7271984 0 0 1 7.790526,-7.802927 z"
+       id="path5477"
+       style="stroke-width:2.19392" />
+    <path
+       class="cls-12"
+       d="M 30.906233,47.638291 42.086387,33.476316 q 3.426981,-4.330725 3.427686,-6.476323 A 3.300422,3.305419 0 0 0 45.31935,25.751537 h 19.516187 a 22.254188,22.287881 0 0 0 -5.564503,5.270621 Q 58.21949,32.27132 56.118215,34.88732 L 41.46275,53.138718 58.95398,77.249421 q 1.24526,1.717244 4.050619,4.915877 a 18.788845,18.817293 0 0 0 1.908969,1.677314 H 44.891141 a 6.3982678,6.4079551 0 0 0 0.232984,-1.59977 q 0,-2.144489 -2.960111,-6.203056 L 30.906233,60.669084 v 15.565821 q 0,5.423085 2.181721,7.607808 H 14.77907 a 6.9549497,6.9654798 0 0 0 1.948235,-3.472203 23.711085,23.746985 0 0 0 0.233486,-4.096178 V 33.320321 A 23.722061,23.757976 0 0 0 16.727305,29.224143 6.9572655,6.967799 0 0 0 14.77907,25.75194 h 18.308884 q -2.181721,2.185026 -2.181721,7.568381 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:2.19392" />
+    <path
+       class="cls-12"
+       d="m 83.222955,41.16207 v 35.814285 a 25.157009,25.195098 0 0 0 0.155357,3.667322 6.2958722,6.3054043 0 0 0 1.636115,3.199036 H 67.874383 a 6.3068468,6.3163955 0 0 0 1.636115,-3.199036 25.895022,25.934228 0 0 0 0.155355,-3.667322 V 47.950279 A 24.950506,24.988281 0 0 0 69.510498,44.322385 6.4313929,6.4411302 0 0 0 67.913045,41.16207 Z M 76.443901,20.757914 a 7.8145899,7.8264215 0 0 1 7.791131,7.802927 7.7908285,7.8026241 0 0 1 -15.581657,0 7.7155168,7.7271984 0 0 1 7.790526,-7.802927 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:2.19392" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:2.18767"
+       transform="matrix(1.0057237,0,0,1,-0.48582001,2.6345743)" />
+    <path
+       class="cls-16"
+       d="m 16.962,33.455544 c -0.08487,-1.300791 -0.211437,-2.599766 -0.329941,-3.890675 a 4.3343462,4.3409085 0 0 0 -0.443514,-1.815056 15.481476,15.504916 0 0 0 -1.0157,-1.625786 l -0.243052,-0.342844 0.421766,-0.01009 q 4.432614,-0.110921 8.866738,-0.119492 c 1.47774,-0.02016 2.956183,0.009 4.434325,0.01431 1.478142,0.002 2.956989,0.0598 4.435332,0.08702 -1.477135,0.06746 -2.953867,0.165472 -4.431305,0.207824 -1.477437,0.04567 -2.954572,0.114751 -4.432311,0.135121 Q 19.791623,26.205697 15.3576,26.2181 l 0.178614,-0.352928 a 12.165851,12.18427 0 0 1 1.010867,1.708977 3.0507257,3.0553446 0 0 1 0.306684,0.980534 c 0.0447,0.333566 0.06393,0.65947 0.08296,0.986987 0.07874,1.305429 0.04189,2.610454 0.02527,3.913867 z"
+       id="path5491"
+       style="stroke-width:2.19392" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:4.38784;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="76.170616"
+       cy="28.789175"
+       rx="8.1460009"
+       ry="8.1583338" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/dark/icon_kicad_nightly_16.svg b/bitmaps_png/sources/dark/icon_kicad_nightly_16.svg
new file mode 100644
index 0000000000..78b96958de
--- /dev/null
+++ b/bitmaps_png/sources/dark/icon_kicad_nightly_16.svg
@@ -0,0 +1,232 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 16 16"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly_16.svg"
+   width="16"
+   height="16"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>app_icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="22.627417"
+     inkscape:cx="-0.44194174"
+     inkscape:cy="8.5957668"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:document-rotation="0"
+     inkscape:pagecheckerboard="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.34962271,0,0,0.35009075,-2.7402131,0.53423993)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-0.35009075,0.62337727,0,0.16683975,26.142414)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.34962271,0,0,0.35009075,-2.3523795,0.77419965)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.34962271,0,0,0.35009075,-1.3846318,0.77419965)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-2.7369621"
+       width="34.962273"
+       height="35.009079"
+       rx="7.7693863"
+       id="rect5459"
+       y="0.53423953"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.19392" />
+    <rect
+       class="cls-9"
+       x="-2.8071554"
+       width="34.962273"
+       height="35.009079"
+       rx="7.7693863"
+       id="rect5461"
+       y="0.4874483"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="m 8.5344167,16.393324 3.8822863,-4.916849 q 1.190011,-1.503571 1.190255,-2.2484935 a 1.1460633,1.1475976 0 0 0 -0.06761,-0.4334474 h 6.776948 a 7.7277104,7.7380559 0 0 0 -1.932261,1.8298899 q -0.365146,0.433693 -1.094808,1.341933 l -5.089073,6.336642 6.073785,8.370916 q 0.432413,0.596204 1.406567,1.706726 a 6.5243789,6.533114 0 0 0 0.662884,0.582342 h -6.952737 a 2.2217824,2.2247567 0 0 0 0.0809,-0.555419 q 0,-0.744538 -1.027891,-2.153619 L 8.5344167,20.917442 v 5.404246 q 0,1.882824 0.7575971,2.64133 H 2.9343001 a 2.4150886,2.4183219 0 0 0 0.6765198,-1.205502 8.2336142,8.2446374 0 0 0 0.081077,-1.422139 V 11.422316 A 8.2374256,8.2484533 0 0 0 3.6108199,10.000176 2.4158929,2.4191271 0 0 0 2.9343001,8.794674 H 9.2920138 Q 8.5344167,9.553286 8.5344167,11.422316 Z"
+       id="path5475"
+       style="stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="M 28.12154,14.144867 V 26.57911 c -0.01296,0.425164 0.0051,0.850708 0.05395,1.273245 0.07776,0.417574 0.27516,0.803475 0.568138,1.110663 h -6.404365 c 0.292797,-0.307316 0.490168,-0.693161 0.568137,-1.110663 0.04799,-0.422606 0.06602,-0.848087 0.05395,-1.273245 V 16.501642 c 0.01255,-0.420607 -0.0055,-0.84157 -0.05395,-1.259556 -0.07886,-0.410463 -0.271036,-0.790578 -0.554712,-1.097219 z M 25.315003,7.0608146 c 1.492322,0.00448 2.700977,1.2147526 2.70545,2.7090726 -0.0022,3.6097578 -5.412882,3.6097578 -5.41069,0 -0.01477,-1.5021821 1.205065,-2.7237499 2.70524,-2.7090726 z"
+       id="path5477"
+       style="stroke-width:2.19392"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <path
+       class="cls-12"
+       d="m 8.5344172,16.393324 3.8822858,-4.916849 q 1.190011,-1.503571 1.190255,-2.2484935 a 1.1460633,1.1475976 0 0 0 -0.06761,-0.4334474 h 6.776948 a 7.7277104,7.7380559 0 0 0 -1.932261,1.8298899 q -0.365146,0.433693 -1.094808,1.341933 l -5.089073,6.336642 6.073785,8.370916 q 0.432413,0.596204 1.406567,1.706726 a 6.5243789,6.533114 0 0 0 0.662884,0.582342 h -6.952737 a 2.2217824,2.2247567 0 0 0 0.0809,-0.555419 q 0,-0.744538 -1.027891,-2.153619 L 8.5344172,20.917442 v 5.404246 q 0,1.882824 0.757597,2.64133 H 2.9343001 a 2.4150886,2.4183219 0 0 0 0.6765198,-1.205502 8.2336142,8.2446374 0 0 0 0.081077,-1.422139 V 11.422316 A 8.2374256,8.2484533 0 0 0 3.6108199,10.000176 2.4158929,2.4191271 0 0 0 2.9343001,8.794674 h 6.3577141 q -0.757597,0.758612 -0.757597,2.627642 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:2.19392" />
+    <path
+       class="cls-12"
+       d="M 28.12154,14.144867 V 26.57911 c -0.01296,0.425164 0.0051,0.850708 0.05395,1.273245 0.07776,0.417574 0.27516,0.803475 0.568138,1.110663 h -6.404365 c 0.292797,-0.307316 0.490168,-0.693161 0.568137,-1.110663 0.04799,-0.422606 0.06602,-0.848087 0.05395,-1.273245 V 16.501642 c 0.01255,-0.420607 -0.0055,-0.84157 -0.05395,-1.259556 -0.07886,-0.410463 -0.271036,-0.790578 -0.554712,-1.097219 z M 25.315003,7.0608146 c 1.492322,0.00448 2.700977,1.2147526 2.70545,2.7090726 -0.0022,3.6097578 -5.412882,3.6097578 -5.41069,0 -0.01477,-1.5021821 1.205065,-2.7237499 2.70524,-2.7090726 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:2.19392"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:6.56367"
+       transform="matrix(0.33520771,0,0,0.3333,-2.0009489,1.5109713)" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:4.38784;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="25.476088"
+       cy="9.8265886"
+       ry="2.8324652"
+       rx="2.8286781" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/dark/icon_kicad_nightly_24.svg b/bitmaps_png/sources/dark/icon_kicad_nightly_24.svg
new file mode 100644
index 0000000000..a6f7799733
--- /dev/null
+++ b/bitmaps_png/sources/dark/icon_kicad_nightly_24.svg
@@ -0,0 +1,217 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 24 23.999999"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly_24.svg"
+   width="24"
+   height="24"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:title>app_icon</dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="16"
+     inkscape:cx="4.5625"
+     inkscape:cy="10.84375"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:document-rotation="0"
+     inkscape:pagecheckerboard="0"
+     units="px"
+     width="24mm"
+     height="24px"
+     viewbox-x="0"
+     viewbox-width="24">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-2.8822235,0.44065839)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-0.52513612,0.9350659,0,1.6889351,38.993292)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-2.3004735,0.80059739)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-0.84885246,0.80059739)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-2.8773487"
+       width="52.443409"
+       height="52.513618"
+       rx="11.654079"
+       id="rect5459"
+       y="0.44065806"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:3.29088" />
+    <rect
+       class="cls-9"
+       x="-2.7720587"
+       width="52.443409"
+       height="52.513618"
+       rx="11.654079"
+       id="rect5461"
+       y="0.51084346"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:3.29088" />
+    <path
+       class="cls-11"
+       d="m 14.029721,24.229284 5.823429,-7.375273 q 1.785016,-2.255357 1.785382,-3.37274 A 1.7190949,1.7213964 0 0 0 21.537117,12.8311 H 31.70254 a 11.591566,11.607084 0 0 0 -2.898391,2.744834 q -0.547719,0.65054 -1.642212,2.0129 l -7.633611,9.504963 9.110679,12.556374 q 0.648619,0.894306 2.10985,2.560089 a 9.7865684,9.799671 0 0 0 0.994326,0.873513 H 21.314075 a 3.3326736,3.337135 0 0 0 0.12135,-0.833129 q 0,-1.116807 -1.541837,-3.230428 l -5.863867,-8.004755 v 8.106369 q 0,2.824236 1.136395,3.961995 H 5.6295456 A 3.6226329,3.6274828 0 0 0 6.6443253,41.275572 12.350421,12.366956 0 0 0 6.7659408,39.142364 V 16.772772 A 12.356138,12.37268 0 0 0 6.6443253,14.639562 3.6238393,3.6286906 0 0 0 5.6295456,12.831309 h 9.5365704 q -1.136395,1.137918 -1.136395,3.941463 z"
+       id="path5475"
+       style="stroke-width:3.29088" />
+    <path
+       class="cls-11"
+       d="m 43.410406,20.856599 v 18.651364 c -0.01944,0.637746 0.0076,1.276062 0.08093,1.909868 0.11664,0.626361 0.41274,1.205212 0.852207,1.665994 h -9.606547 c 0.439195,-0.460974 0.735252,-1.039741 0.852205,-1.665994 0.07199,-0.633909 0.09903,-1.272131 0.08093,-1.909868 V 24.391761 c 0.01882,-0.63091 -0.0083,-1.262355 -0.08093,-1.889334 -0.11829,-0.615694 -0.406554,-1.185867 -0.832068,-1.645828 z M 39.200601,10.23052 c 2.238483,0.0067 4.051465,1.822129 4.058175,4.063609 -0.0033,5.414637 -8.119323,5.414637 -8.116035,0 -0.02216,-2.253273 1.807597,-4.085625 4.05786,-4.063609 z"
+       id="path5477"
+       style="stroke-width:3.29088"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <path
+       class="cls-12"
+       d="m 14.029721,24.229284 5.823429,-7.375273 q 1.785016,-2.255357 1.785382,-3.37274 A 1.7190949,1.7213964 0 0 0 21.537117,12.8311 H 31.70254 a 11.591566,11.607084 0 0 0 -2.898391,2.744834 q -0.547719,0.65054 -1.642212,2.0129 l -7.633611,9.504963 9.110679,12.556374 q 0.648619,0.894306 2.10985,2.560089 a 9.7865684,9.799671 0 0 0 0.994326,0.873513 H 21.314075 a 3.3326736,3.337135 0 0 0 0.12135,-0.833129 q 0,-1.116807 -1.541837,-3.230428 l -5.863867,-8.004755 v 8.106369 q 0,2.824236 1.136396,3.961995 H 5.6295456 A 3.6226329,3.6274828 0 0 0 6.6443253,41.275572 12.350421,12.366956 0 0 0 6.7659408,39.142364 V 16.772772 A 12.356138,12.37268 0 0 0 6.6443253,14.639562 3.6238393,3.6286906 0 0 0 5.6295456,12.831309 h 9.5365714 q -1.136396,1.137918 -1.136396,3.941463 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:3.29088" />
+    <path
+       class="cls-12"
+       d="m 43.410406,20.856599 v 18.651364 c -0.01944,0.637746 0.0076,1.276062 0.08093,1.909868 0.11664,0.626361 0.41274,1.205212 0.852207,1.665994 h -9.606547 c 0.439195,-0.460974 0.735252,-1.039741 0.852205,-1.665994 0.07199,-0.633909 0.09903,-1.272131 0.08093,-1.909868 V 24.391761 c 0.01882,-0.63091 -0.0083,-1.262355 -0.08093,-1.889334 -0.11829,-0.615694 -0.406554,-1.185867 -0.832068,-1.645828 z M 39.200601,10.23052 c 2.238483,0.0067 4.051465,1.822129 4.058175,4.063609 -0.0033,5.414637 -8.119323,5.414637 -8.116035,0 -0.02216,-2.253273 1.807597,-4.085625 4.05786,-4.063609 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:3.29088"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:6.56367"
+       transform="matrix(0.33520771,0,0,0.3333,-2.0009489,1.5109713)" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:6.58176;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="39.442226"
+       cy="14.379181"
+       ry="4.2486978"
+       rx="4.2430172" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/dark/icon_kicad_nightly_32.svg b/bitmaps_png/sources/dark/icon_kicad_nightly_32.svg
new file mode 100644
index 0000000000..970ceae546
--- /dev/null
+++ b/bitmaps_png/sources/dark/icon_kicad_nightly_32.svg
@@ -0,0 +1,234 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 32 32"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly_32.svg"
+   width="32"
+   height="32"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>app_icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="11.313709"
+     inkscape:cx="18.11961"
+     inkscape:cy="14.981824"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:document-rotation="0"
+     inkscape:pagecheckerboard="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.69924542,0,0,0.7001815,-2.8838513,0.44065815)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-0.7001815,1.2467545,0,3.2110279,51.844171)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.69924542,0,0,0.7001815,-2.1081841,0.92057755)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.69924542,0,0,0.7001815,-0.17268875,0.92057755)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-2.8773494"
+       width="69.924545"
+       height="70.018158"
+       rx="15.538773"
+       id="rect5459"
+       y="0.44065741"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.19393" />
+    <rect
+       class="cls-9"
+       x="-2.7369618"
+       width="69.924545"
+       height="70.018158"
+       rx="15.538773"
+       id="rect5461"
+       y="0.53423858"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.19393" />
+    <path
+       class="cls-11"
+       d="m 19.665408,32.158827 7.764573,-10.996873 c 1.586681,-2.004761 2.380185,-3.503757 2.38051,-4.496987 0.01102,-0.294983 -0.03489,-0.589326 -0.13522,-0.866895 h 13.553896 c -1.489712,0.987128 -2.797246,2.225389 -3.864522,3.65978 -0.486861,0.578257 -1.216733,1.472879 -2.189616,2.683866 l -10.178146,13.836459 12.14757,16.741832 c 0.576551,0.794939 1.514262,1.932756 2.813134,3.413452 0.415186,0.417723 0.85812,0.80684 1.325768,1.164684 H 29.377881 c 0.100552,-0.361954 0.154917,-0.735204 0.1618,-1.110838 0,-0.992717 -0.685261,-2.428463 -2.055782,-4.307238 L 19.665408,41.207063 v 10.808492 c 0,2.510432 0.505065,4.271319 1.515194,5.28266 H 8.4651751 c 0.6757533,-0.654668 1.1459936,-1.492596 1.35304,-2.411004 0.1358964,-0.941633 0.1901499,-1.893276 0.162154,-2.844278 l 0,-30.989297 c 0.027958,-0.951002 -0.026295,-1.902643 -0.162154,-2.84428 -0.2071345,-0.918374 -0.6773614,-1.756279 -1.35304,-2.411004 H 21.180602 c -1.010129,1.011483 -1.515194,2.763244 -1.515194,5.255284 z"
+       id="path5475"
+       style="stroke-width:2.19393"
+       sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
+    <path
+       class="cls-11"
+       d="m 58.839655,28.961569 v 23.56883 c -0.02592,0.850328 0.0102,1.701416 0.1079,2.54649 0.15552,0.835148 0.55032,1.60695 1.136276,2.221326 H 46.33855 c 0.585594,-0.614632 0.980336,-1.386322 1.136274,-2.221326 0.09598,-0.845212 0.13204,-1.696174 0.1079,-2.54649 v -18.85528 c 0.0251,-0.841214 -0.011,-1.68314 -0.1079,-2.519112 -0.15772,-0.820926 -0.542072,-1.581156 -1.109424,-2.194438 z M 53.226581,13.493808 c 2.984644,0.009 5.401954,2.429505 5.4109,5.418145 -0.0044,7.219516 -10.825764,7.219516 -10.82138,0 -0.02954,-3.004364 2.41013,-5.4475 5.41048,-5.418145 z"
+       id="path5477"
+       style="stroke-width:2.19393"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <path
+       class="cls-12"
+       d="m 19.665409,32.158827 7.764572,-10.996873 c 1.586681,-2.004762 2.380185,-3.503757 2.38051,-4.496987 0.01102,-0.294984 -0.03489,-0.589326 -0.13522,-0.866895 h 13.553896 c -1.489712,0.987127 -2.797246,2.225388 -3.864522,3.65978 -0.486861,0.578257 -1.216733,1.472879 -2.189616,2.683866 l -10.178146,13.836459 12.14757,16.741832 c 0.576551,0.794939 1.514262,1.932756 2.813134,3.413452 0.415186,0.417723 0.85812,0.80684 1.325768,1.164684 H 29.377881 c 0.100552,-0.361954 0.154917,-0.735204 0.1618,-1.110838 0,-0.992717 -0.685261,-2.428463 -2.055782,-4.307238 l -7.81849,-10.673006 v 10.808492 c 0,2.510432 0.505065,4.271319 1.515194,5.28266 H 8.4651751 c 0.6757533,-0.654668 1.1459936,-1.492596 1.35304,-2.411004 0.1358964,-0.941633 0.1901499,-1.893276 0.162154,-2.844278 l 0,-30.989297 c 0.027958,-0.951002 -0.026295,-1.902643 -0.162154,-2.84428 -0.2071345,-0.918374 -0.6773614,-1.756279 -1.35304,-2.411004 H 21.180603 c -1.010129,1.011482 -1.515194,2.763244 -1.515194,5.255284 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:2.19393"
+       sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
+    <path
+       class="cls-12"
+       d="m 58.839655,28.961569 v 23.56883 c -0.02592,0.850328 0.0102,1.701416 0.1079,2.54649 0.15552,0.835148 0.55032,1.60695 1.136276,2.221326 H 46.33855 c 0.585594,-0.614632 0.980336,-1.386322 1.136274,-2.221326 0.09598,-0.845212 0.13204,-1.696174 0.1079,-2.54649 v -18.85528 c 0.0251,-0.841214 -0.011,-1.68314 -0.1079,-2.519112 -0.15772,-0.820926 -0.542072,-1.581156 -1.109424,-2.194438 z M 53.226581,13.493808 c 2.984644,0.009 5.401954,2.429505 5.4109,5.418145 -0.0044,7.219516 -10.825764,7.219516 -10.82138,0 -0.02954,-3.004364 2.41013,-5.4475 5.41048,-5.418145 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:2.19393"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:6.56367"
+       transform="matrix(0.33520771,0,0,0.3333,-2.0009489,1.5109713)" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:4.38784;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="53.548748"
+       cy="19.025356"
+       ry="5.6649303"
+       rx="5.6573563" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/light/icon_kicad_24.svg b/bitmaps_png/sources/light/icon_kicad_24.svg
new file mode 100644
index 0000000000..ef6cd87134
--- /dev/null
+++ b/bitmaps_png/sources/light/icon_kicad_24.svg
@@ -0,0 +1,213 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 24 23.999999"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_24.svg"
+   width="24"
+   height="24"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:title>app_icon</dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="22.627417"
+     inkscape:cx="6.4081552"
+     inkscape:cy="8.905126"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:document-rotation="0"
+     inkscape:pagecheckerboard="0"
+     units="px"
+     width="24mm"
+     height="24px"
+     viewbox-x="0"
+     viewbox-width="24">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-2.8822235,0.44065839)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-0.52513612,0.9350659,0,1.5836455,38.923106)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-2.3004735,0.80059739)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-0.84885246,0.80059739)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-2.8773487"
+       width="52.443409"
+       height="52.513618"
+       rx="11.654079"
+       id="rect5459"
+       y="0.44065806"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:3.29088" />
+    <rect
+       class="cls-9"
+       x="-2.8773487"
+       width="52.443409"
+       height="52.513618"
+       rx="11.654079"
+       id="rect5461"
+       y="0.44065806"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:3.29088" />
+    <path
+       class="cls-11"
+       d="m 14.029721,24.229284 5.823429,-7.375273 q 1.785016,-2.255357 1.785382,-3.37274 A 1.7190949,1.7213964 0 0 0 21.537117,12.8311 H 31.70254 a 11.591566,11.607084 0 0 0 -2.898391,2.744834 q -0.547719,0.65054 -1.642212,2.0129 l -7.633611,9.504963 9.110679,12.556374 q 0.648619,0.894306 2.10985,2.560089 a 9.7865684,9.799671 0 0 0 0.994326,0.873513 H 21.314075 a 3.3326736,3.337135 0 0 0 0.12135,-0.833129 q 0,-1.116807 -1.541837,-3.230428 l -5.863867,-8.004755 v 8.106369 q 0,2.824236 1.136395,3.961995 H 5.6295456 A 3.6226329,3.6274828 0 0 0 6.6443253,41.275572 12.350421,12.366956 0 0 0 6.7659408,39.142364 V 16.772772 A 12.356138,12.37268 0 0 0 6.6443253,14.639562 3.6238393,3.6286906 0 0 0 5.6295456,12.831309 h 9.5365704 q -1.136395,1.137918 -1.136395,3.941463 z"
+       id="path5475"
+       style="stroke-width:3.29088" />
+    <path
+       class="cls-11"
+       d="m 43.410406,20.856599 v 18.651364 c -0.01944,0.637746 0.0076,1.276062 0.08093,1.909868 0.11664,0.626361 0.41274,1.205212 0.852207,1.665994 h -9.606547 c 0.439195,-0.460974 0.735252,-1.039741 0.852205,-1.665994 0.07199,-0.633909 0.09903,-1.272131 0.08093,-1.909868 V 24.391761 c 0.01882,-0.63091 -0.0083,-1.262355 -0.08093,-1.889334 -0.11829,-0.615694 -0.406554,-1.185867 -0.832068,-1.645828 z M 39.200601,10.23052 c 2.238483,0.0067 4.051465,1.822129 4.058175,4.063609 -0.0033,5.414637 -8.119323,5.414637 -8.116035,0 -0.02216,-2.253273 1.807597,-4.085625 4.05786,-4.063609 z"
+       id="path5477"
+       style="stroke-width:3.29088"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <path
+       class="cls-12"
+       d="m 14.029721,24.229284 5.823429,-7.375273 q 1.785016,-2.255357 1.785382,-3.37274 A 1.7190949,1.7213964 0 0 0 21.537117,12.8311 H 31.70254 a 11.591566,11.607084 0 0 0 -2.898391,2.744834 q -0.547719,0.65054 -1.642212,2.0129 l -7.633611,9.504963 9.110679,12.556374 q 0.648619,0.894306 2.10985,2.560089 a 9.7865684,9.799671 0 0 0 0.994326,0.873513 H 21.314075 a 3.3326736,3.337135 0 0 0 0.12135,-0.833129 q 0,-1.116807 -1.541837,-3.230428 l -5.863867,-8.004755 v 8.106369 q 0,2.824236 1.136396,3.961995 H 5.6295456 A 3.6226329,3.6274828 0 0 0 6.6443253,41.275572 12.350421,12.366956 0 0 0 6.7659408,39.142364 V 16.772772 A 12.356138,12.37268 0 0 0 6.6443253,14.639562 3.6238393,3.6286906 0 0 0 5.6295456,12.831309 h 9.5365714 q -1.136396,1.137918 -1.136396,3.941463 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:3.29088" />
+    <path
+       class="cls-12"
+       d="m 43.410406,20.856599 v 18.651364 c -0.01944,0.637746 0.0076,1.276062 0.08093,1.909868 0.11664,0.626361 0.41274,1.205212 0.852207,1.665994 h -9.606547 c 0.439195,-0.460974 0.735252,-1.039741 0.852205,-1.665994 0.07199,-0.633909 0.09903,-1.272131 0.08093,-1.909868 V 24.391761 c 0.01882,-0.63091 -0.0083,-1.262355 -0.08093,-1.889334 -0.11829,-0.615694 -0.406554,-1.185867 -0.832068,-1.645828 z M 39.200601,10.23052 c 2.238483,0.0067 4.051465,1.822129 4.058175,4.063609 -0.0033,5.414637 -8.119323,5.414637 -8.116035,0 -0.02216,-2.253273 1.807597,-4.085625 4.05786,-4.063609 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:3.29088"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:6.56367"
+       transform="matrix(0.33520771,0,0,0.3333,-2.0009489,1.5109713)" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:6.58176;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="39.442226"
+       cy="14.379181"
+       ry="4.2486978"
+       rx="4.2430172" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/light/icon_kicad_nightly.svg b/bitmaps_png/sources/light/icon_kicad_nightly.svg
new file mode 100755
index 0000000000..a4e8a18d42
--- /dev/null
+++ b/bitmaps_png/sources/light/icon_kicad_nightly.svg
@@ -0,0 +1,234 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 48 48"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly.svg"
+   width="48"
+   height="48"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>app_icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="8"
+     inkscape:cx="20"
+     inkscape:cy="15.1875"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:pagecheckerboard="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.57473315,2.6764188)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-1.0083645,1.795196,0,7.9991129,76.570283)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#Безымянный_градиент_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#Безымянный_градиент_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-0.56537002"
+       width="100.68402"
+       height="100.83646"
+       rx="22.374205"
+       id="rect5459"
+       y="2.676419"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.19392" />
+    <rect
+       class="cls-9"
+       x="-0.56537002"
+       width="100.68402"
+       height="100.83646"
+       rx="22.374205"
+       id="rect5461"
+       y="2.676419"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="M 30.906233,47.638291 42.086387,33.476316 q 3.426981,-4.330725 3.427686,-6.476323 A 3.300422,3.305419 0 0 0 45.31935,25.751537 h 19.516187 a 22.254188,22.287881 0 0 0 -5.564503,5.270621 Q 58.21949,32.27132 56.118215,34.88732 L 41.46275,53.138718 58.95398,77.249421 q 1.24526,1.717244 4.050619,4.915877 a 18.788845,18.817293 0 0 0 1.908969,1.677314 H 44.891141 a 6.3982678,6.4079551 0 0 0 0.232984,-1.59977 q 0,-2.144489 -2.960111,-6.203056 L 30.906233,60.669084 v 15.565821 q 0,5.423085 2.181721,7.607808 H 14.77907 a 6.9549497,6.9654798 0 0 0 1.948235,-3.472203 23.711085,23.746985 0 0 0 0.233486,-4.096178 V 33.320321 A 23.722061,23.757976 0 0 0 16.727305,29.224143 6.9572655,6.967799 0 0 0 14.77907,25.75194 h 18.308884 q -2.181721,2.185026 -2.181721,7.568381 z"
+       id="path5475"
+       style="stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="m 83.222955,41.16207 v 35.814285 a 25.157009,25.195098 0 0 0 0.155357,3.667322 6.2958722,6.3054043 0 0 0 1.636115,3.199036 H 67.874383 a 6.3068468,6.3163955 0 0 0 1.636115,-3.199036 25.895022,25.934228 0 0 0 0.155355,-3.667322 V 47.950279 A 24.950506,24.988281 0 0 0 69.510498,44.322385 6.4313929,6.4411302 0 0 0 67.913045,41.16207 Z M 76.443901,20.757914 a 7.8145899,7.8264215 0 0 1 7.791131,7.802927 7.7908285,7.8026241 0 0 1 -15.581657,0 7.7155168,7.7271984 0 0 1 7.790526,-7.802927 z"
+       id="path5477"
+       style="stroke-width:2.19392" />
+    <path
+       class="cls-12"
+       d="M 30.906233,47.638291 42.086387,33.476316 q 3.426981,-4.330725 3.427686,-6.476323 A 3.300422,3.305419 0 0 0 45.31935,25.751537 h 19.516187 a 22.254188,22.287881 0 0 0 -5.564503,5.270621 Q 58.21949,32.27132 56.118215,34.88732 L 41.46275,53.138718 58.95398,77.249421 q 1.24526,1.717244 4.050619,4.915877 a 18.788845,18.817293 0 0 0 1.908969,1.677314 H 44.891141 a 6.3982678,6.4079551 0 0 0 0.232984,-1.59977 q 0,-2.144489 -2.960111,-6.203056 L 30.906233,60.669084 v 15.565821 q 0,5.423085 2.181721,7.607808 H 14.77907 a 6.9549497,6.9654798 0 0 0 1.948235,-3.472203 23.711085,23.746985 0 0 0 0.233486,-4.096178 V 33.320321 A 23.722061,23.757976 0 0 0 16.727305,29.224143 6.9572655,6.967799 0 0 0 14.77907,25.75194 h 18.308884 q -2.181721,2.185026 -2.181721,7.568381 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:2.19392" />
+    <path
+       class="cls-12"
+       d="m 83.222955,41.16207 v 35.814285 a 25.157009,25.195098 0 0 0 0.155357,3.667322 6.2958722,6.3054043 0 0 0 1.636115,3.199036 H 67.874383 a 6.3068468,6.3163955 0 0 0 1.636115,-3.199036 25.895022,25.934228 0 0 0 0.155355,-3.667322 V 47.950279 A 24.950506,24.988281 0 0 0 69.510498,44.322385 6.4313929,6.4411302 0 0 0 67.913045,41.16207 Z M 76.443901,20.757914 a 7.8145899,7.8264215 0 0 1 7.791131,7.802927 7.7908285,7.8026241 0 0 1 -15.581657,0 7.7155168,7.7271984 0 0 1 7.790526,-7.802927 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:2.19392" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:2.18767"
+       transform="matrix(1.0057237,0,0,1,-0.48582001,2.6345743)" />
+    <path
+       class="cls-16"
+       d="m 16.962,33.455544 c -0.08487,-1.300791 -0.211437,-2.599766 -0.329941,-3.890675 a 4.3343462,4.3409085 0 0 0 -0.443514,-1.815056 15.481476,15.504916 0 0 0 -1.0157,-1.625786 l -0.243052,-0.342844 0.421766,-0.01009 q 4.432614,-0.110921 8.866738,-0.119492 c 1.47774,-0.02016 2.956183,0.009 4.434325,0.01431 1.478142,0.002 2.956989,0.0598 4.435332,0.08702 -1.477135,0.06746 -2.953867,0.165472 -4.431305,0.207824 -1.477437,0.04567 -2.954572,0.114751 -4.432311,0.135121 Q 19.791623,26.205697 15.3576,26.2181 l 0.178614,-0.352928 a 12.165851,12.18427 0 0 1 1.010867,1.708977 3.0507257,3.0553446 0 0 1 0.306684,0.980534 c 0.0447,0.333566 0.06393,0.65947 0.08296,0.986987 0.07874,1.305429 0.04189,2.610454 0.02527,3.913867 z"
+       id="path5491"
+       style="stroke-width:2.19392" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:4.38784;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="76.170616"
+       cy="28.789175"
+       rx="8.1460009"
+       ry="8.1583338" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/light/icon_kicad_nightly_16.svg b/bitmaps_png/sources/light/icon_kicad_nightly_16.svg
new file mode 100644
index 0000000000..78b96958de
--- /dev/null
+++ b/bitmaps_png/sources/light/icon_kicad_nightly_16.svg
@@ -0,0 +1,232 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 16 16"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly_16.svg"
+   width="16"
+   height="16"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>app_icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="22.627417"
+     inkscape:cx="-0.44194174"
+     inkscape:cy="8.5957668"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:document-rotation="0"
+     inkscape:pagecheckerboard="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.34962271,0,0,0.35009075,-2.7402131,0.53423993)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-0.35009075,0.62337727,0,0.16683975,26.142414)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.34962271,0,0,0.35009075,-2.3523795,0.77419965)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.34962271,0,0,0.35009075,-1.3846318,0.77419965)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-2.7369621"
+       width="34.962273"
+       height="35.009079"
+       rx="7.7693863"
+       id="rect5459"
+       y="0.53423953"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.19392" />
+    <rect
+       class="cls-9"
+       x="-2.8071554"
+       width="34.962273"
+       height="35.009079"
+       rx="7.7693863"
+       id="rect5461"
+       y="0.4874483"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="m 8.5344167,16.393324 3.8822863,-4.916849 q 1.190011,-1.503571 1.190255,-2.2484935 a 1.1460633,1.1475976 0 0 0 -0.06761,-0.4334474 h 6.776948 a 7.7277104,7.7380559 0 0 0 -1.932261,1.8298899 q -0.365146,0.433693 -1.094808,1.341933 l -5.089073,6.336642 6.073785,8.370916 q 0.432413,0.596204 1.406567,1.706726 a 6.5243789,6.533114 0 0 0 0.662884,0.582342 h -6.952737 a 2.2217824,2.2247567 0 0 0 0.0809,-0.555419 q 0,-0.744538 -1.027891,-2.153619 L 8.5344167,20.917442 v 5.404246 q 0,1.882824 0.7575971,2.64133 H 2.9343001 a 2.4150886,2.4183219 0 0 0 0.6765198,-1.205502 8.2336142,8.2446374 0 0 0 0.081077,-1.422139 V 11.422316 A 8.2374256,8.2484533 0 0 0 3.6108199,10.000176 2.4158929,2.4191271 0 0 0 2.9343001,8.794674 H 9.2920138 Q 8.5344167,9.553286 8.5344167,11.422316 Z"
+       id="path5475"
+       style="stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="M 28.12154,14.144867 V 26.57911 c -0.01296,0.425164 0.0051,0.850708 0.05395,1.273245 0.07776,0.417574 0.27516,0.803475 0.568138,1.110663 h -6.404365 c 0.292797,-0.307316 0.490168,-0.693161 0.568137,-1.110663 0.04799,-0.422606 0.06602,-0.848087 0.05395,-1.273245 V 16.501642 c 0.01255,-0.420607 -0.0055,-0.84157 -0.05395,-1.259556 -0.07886,-0.410463 -0.271036,-0.790578 -0.554712,-1.097219 z M 25.315003,7.0608146 c 1.492322,0.00448 2.700977,1.2147526 2.70545,2.7090726 -0.0022,3.6097578 -5.412882,3.6097578 -5.41069,0 -0.01477,-1.5021821 1.205065,-2.7237499 2.70524,-2.7090726 z"
+       id="path5477"
+       style="stroke-width:2.19392"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <path
+       class="cls-12"
+       d="m 8.5344172,16.393324 3.8822858,-4.916849 q 1.190011,-1.503571 1.190255,-2.2484935 a 1.1460633,1.1475976 0 0 0 -0.06761,-0.4334474 h 6.776948 a 7.7277104,7.7380559 0 0 0 -1.932261,1.8298899 q -0.365146,0.433693 -1.094808,1.341933 l -5.089073,6.336642 6.073785,8.370916 q 0.432413,0.596204 1.406567,1.706726 a 6.5243789,6.533114 0 0 0 0.662884,0.582342 h -6.952737 a 2.2217824,2.2247567 0 0 0 0.0809,-0.555419 q 0,-0.744538 -1.027891,-2.153619 L 8.5344172,20.917442 v 5.404246 q 0,1.882824 0.757597,2.64133 H 2.9343001 a 2.4150886,2.4183219 0 0 0 0.6765198,-1.205502 8.2336142,8.2446374 0 0 0 0.081077,-1.422139 V 11.422316 A 8.2374256,8.2484533 0 0 0 3.6108199,10.000176 2.4158929,2.4191271 0 0 0 2.9343001,8.794674 h 6.3577141 q -0.757597,0.758612 -0.757597,2.627642 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:2.19392" />
+    <path
+       class="cls-12"
+       d="M 28.12154,14.144867 V 26.57911 c -0.01296,0.425164 0.0051,0.850708 0.05395,1.273245 0.07776,0.417574 0.27516,0.803475 0.568138,1.110663 h -6.404365 c 0.292797,-0.307316 0.490168,-0.693161 0.568137,-1.110663 0.04799,-0.422606 0.06602,-0.848087 0.05395,-1.273245 V 16.501642 c 0.01255,-0.420607 -0.0055,-0.84157 -0.05395,-1.259556 -0.07886,-0.410463 -0.271036,-0.790578 -0.554712,-1.097219 z M 25.315003,7.0608146 c 1.492322,0.00448 2.700977,1.2147526 2.70545,2.7090726 -0.0022,3.6097578 -5.412882,3.6097578 -5.41069,0 -0.01477,-1.5021821 1.205065,-2.7237499 2.70524,-2.7090726 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:2.19392"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:6.56367"
+       transform="matrix(0.33520771,0,0,0.3333,-2.0009489,1.5109713)" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:4.38784;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="25.476088"
+       cy="9.8265886"
+       ry="2.8324652"
+       rx="2.8286781" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/light/icon_kicad_nightly_24.svg b/bitmaps_png/sources/light/icon_kicad_nightly_24.svg
new file mode 100644
index 0000000000..a6f7799733
--- /dev/null
+++ b/bitmaps_png/sources/light/icon_kicad_nightly_24.svg
@@ -0,0 +1,217 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 24 23.999999"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly_24.svg"
+   width="24"
+   height="24"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:title>app_icon</dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="16"
+     inkscape:cx="4.5625"
+     inkscape:cy="10.84375"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:document-rotation="0"
+     inkscape:pagecheckerboard="0"
+     units="px"
+     width="24mm"
+     height="24px"
+     viewbox-x="0"
+     viewbox-width="24">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-2.8822235,0.44065839)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-0.52513612,0.9350659,0,1.6889351,38.993292)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-2.3004735,0.80059739)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.52443406,0,0,0.52513612,-0.84885246,0.80059739)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-2.8773487"
+       width="52.443409"
+       height="52.513618"
+       rx="11.654079"
+       id="rect5459"
+       y="0.44065806"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:3.29088" />
+    <rect
+       class="cls-9"
+       x="-2.7720587"
+       width="52.443409"
+       height="52.513618"
+       rx="11.654079"
+       id="rect5461"
+       y="0.51084346"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:3.29088" />
+    <path
+       class="cls-11"
+       d="m 14.029721,24.229284 5.823429,-7.375273 q 1.785016,-2.255357 1.785382,-3.37274 A 1.7190949,1.7213964 0 0 0 21.537117,12.8311 H 31.70254 a 11.591566,11.607084 0 0 0 -2.898391,2.744834 q -0.547719,0.65054 -1.642212,2.0129 l -7.633611,9.504963 9.110679,12.556374 q 0.648619,0.894306 2.10985,2.560089 a 9.7865684,9.799671 0 0 0 0.994326,0.873513 H 21.314075 a 3.3326736,3.337135 0 0 0 0.12135,-0.833129 q 0,-1.116807 -1.541837,-3.230428 l -5.863867,-8.004755 v 8.106369 q 0,2.824236 1.136395,3.961995 H 5.6295456 A 3.6226329,3.6274828 0 0 0 6.6443253,41.275572 12.350421,12.366956 0 0 0 6.7659408,39.142364 V 16.772772 A 12.356138,12.37268 0 0 0 6.6443253,14.639562 3.6238393,3.6286906 0 0 0 5.6295456,12.831309 h 9.5365704 q -1.136395,1.137918 -1.136395,3.941463 z"
+       id="path5475"
+       style="stroke-width:3.29088" />
+    <path
+       class="cls-11"
+       d="m 43.410406,20.856599 v 18.651364 c -0.01944,0.637746 0.0076,1.276062 0.08093,1.909868 0.11664,0.626361 0.41274,1.205212 0.852207,1.665994 h -9.606547 c 0.439195,-0.460974 0.735252,-1.039741 0.852205,-1.665994 0.07199,-0.633909 0.09903,-1.272131 0.08093,-1.909868 V 24.391761 c 0.01882,-0.63091 -0.0083,-1.262355 -0.08093,-1.889334 -0.11829,-0.615694 -0.406554,-1.185867 -0.832068,-1.645828 z M 39.200601,10.23052 c 2.238483,0.0067 4.051465,1.822129 4.058175,4.063609 -0.0033,5.414637 -8.119323,5.414637 -8.116035,0 -0.02216,-2.253273 1.807597,-4.085625 4.05786,-4.063609 z"
+       id="path5477"
+       style="stroke-width:3.29088"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <path
+       class="cls-12"
+       d="m 14.029721,24.229284 5.823429,-7.375273 q 1.785016,-2.255357 1.785382,-3.37274 A 1.7190949,1.7213964 0 0 0 21.537117,12.8311 H 31.70254 a 11.591566,11.607084 0 0 0 -2.898391,2.744834 q -0.547719,0.65054 -1.642212,2.0129 l -7.633611,9.504963 9.110679,12.556374 q 0.648619,0.894306 2.10985,2.560089 a 9.7865684,9.799671 0 0 0 0.994326,0.873513 H 21.314075 a 3.3326736,3.337135 0 0 0 0.12135,-0.833129 q 0,-1.116807 -1.541837,-3.230428 l -5.863867,-8.004755 v 8.106369 q 0,2.824236 1.136396,3.961995 H 5.6295456 A 3.6226329,3.6274828 0 0 0 6.6443253,41.275572 12.350421,12.366956 0 0 0 6.7659408,39.142364 V 16.772772 A 12.356138,12.37268 0 0 0 6.6443253,14.639562 3.6238393,3.6286906 0 0 0 5.6295456,12.831309 h 9.5365714 q -1.136396,1.137918 -1.136396,3.941463 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:3.29088" />
+    <path
+       class="cls-12"
+       d="m 43.410406,20.856599 v 18.651364 c -0.01944,0.637746 0.0076,1.276062 0.08093,1.909868 0.11664,0.626361 0.41274,1.205212 0.852207,1.665994 h -9.606547 c 0.439195,-0.460974 0.735252,-1.039741 0.852205,-1.665994 0.07199,-0.633909 0.09903,-1.272131 0.08093,-1.909868 V 24.391761 c 0.01882,-0.63091 -0.0083,-1.262355 -0.08093,-1.889334 -0.11829,-0.615694 -0.406554,-1.185867 -0.832068,-1.645828 z M 39.200601,10.23052 c 2.238483,0.0067 4.051465,1.822129 4.058175,4.063609 -0.0033,5.414637 -8.119323,5.414637 -8.116035,0 -0.02216,-2.253273 1.807597,-4.085625 4.05786,-4.063609 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:3.29088"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:6.56367"
+       transform="matrix(0.33520771,0,0,0.3333,-2.0009489,1.5109713)" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:6.58176;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="39.442226"
+       cy="14.379181"
+       ry="4.2486978"
+       rx="4.2430172" />
+  </g>
+</svg>
diff --git a/bitmaps_png/sources/light/icon_kicad_nightly_32.svg b/bitmaps_png/sources/light/icon_kicad_nightly_32.svg
new file mode 100644
index 0000000000..970ceae546
--- /dev/null
+++ b/bitmaps_png/sources/light/icon_kicad_nightly_32.svg
@@ -0,0 +1,234 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 32 32"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly_32.svg"
+   width="32"
+   height="32"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>app_icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="11.313709"
+     inkscape:cx="18.11961"
+     inkscape:cy="14.981824"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:document-rotation="0"
+     inkscape:pagecheckerboard="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.69924542,0,0,0.7001815,-2.8838513,0.44065815)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-0.7001815,1.2467545,0,3.2110279,51.844171)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.69924542,0,0,0.7001815,-2.1081841,0.92057755)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(0.69924542,0,0,0.7001815,-0.17268875,0.92057755)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-2.8773494"
+       width="69.924545"
+       height="70.018158"
+       rx="15.538773"
+       id="rect5459"
+       y="0.44065741"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.19393" />
+    <rect
+       class="cls-9"
+       x="-2.7369618"
+       width="69.924545"
+       height="70.018158"
+       rx="15.538773"
+       id="rect5461"
+       y="0.53423858"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.19393" />
+    <path
+       class="cls-11"
+       d="m 19.665408,32.158827 7.764573,-10.996873 c 1.586681,-2.004761 2.380185,-3.503757 2.38051,-4.496987 0.01102,-0.294983 -0.03489,-0.589326 -0.13522,-0.866895 h 13.553896 c -1.489712,0.987128 -2.797246,2.225389 -3.864522,3.65978 -0.486861,0.578257 -1.216733,1.472879 -2.189616,2.683866 l -10.178146,13.836459 12.14757,16.741832 c 0.576551,0.794939 1.514262,1.932756 2.813134,3.413452 0.415186,0.417723 0.85812,0.80684 1.325768,1.164684 H 29.377881 c 0.100552,-0.361954 0.154917,-0.735204 0.1618,-1.110838 0,-0.992717 -0.685261,-2.428463 -2.055782,-4.307238 L 19.665408,41.207063 v 10.808492 c 0,2.510432 0.505065,4.271319 1.515194,5.28266 H 8.4651751 c 0.6757533,-0.654668 1.1459936,-1.492596 1.35304,-2.411004 0.1358964,-0.941633 0.1901499,-1.893276 0.162154,-2.844278 l 0,-30.989297 c 0.027958,-0.951002 -0.026295,-1.902643 -0.162154,-2.84428 -0.2071345,-0.918374 -0.6773614,-1.756279 -1.35304,-2.411004 H 21.180602 c -1.010129,1.011483 -1.515194,2.763244 -1.515194,5.255284 z"
+       id="path5475"
+       style="stroke-width:2.19393"
+       sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
+    <path
+       class="cls-11"
+       d="m 58.839655,28.961569 v 23.56883 c -0.02592,0.850328 0.0102,1.701416 0.1079,2.54649 0.15552,0.835148 0.55032,1.60695 1.136276,2.221326 H 46.33855 c 0.585594,-0.614632 0.980336,-1.386322 1.136274,-2.221326 0.09598,-0.845212 0.13204,-1.696174 0.1079,-2.54649 v -18.85528 c 0.0251,-0.841214 -0.011,-1.68314 -0.1079,-2.519112 -0.15772,-0.820926 -0.542072,-1.581156 -1.109424,-2.194438 z M 53.226581,13.493808 c 2.984644,0.009 5.401954,2.429505 5.4109,5.418145 -0.0044,7.219516 -10.825764,7.219516 -10.82138,0 -0.02954,-3.004364 2.41013,-5.4475 5.41048,-5.418145 z"
+       id="path5477"
+       style="stroke-width:2.19393"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <path
+       class="cls-12"
+       d="m 19.665409,32.158827 7.764572,-10.996873 c 1.586681,-2.004762 2.380185,-3.503757 2.38051,-4.496987 0.01102,-0.294984 -0.03489,-0.589326 -0.13522,-0.866895 h 13.553896 c -1.489712,0.987127 -2.797246,2.225388 -3.864522,3.65978 -0.486861,0.578257 -1.216733,1.472879 -2.189616,2.683866 l -10.178146,13.836459 12.14757,16.741832 c 0.576551,0.794939 1.514262,1.932756 2.813134,3.413452 0.415186,0.417723 0.85812,0.80684 1.325768,1.164684 H 29.377881 c 0.100552,-0.361954 0.154917,-0.735204 0.1618,-1.110838 0,-0.992717 -0.685261,-2.428463 -2.055782,-4.307238 l -7.81849,-10.673006 v 10.808492 c 0,2.510432 0.505065,4.271319 1.515194,5.28266 H 8.4651751 c 0.6757533,-0.654668 1.1459936,-1.492596 1.35304,-2.411004 0.1358964,-0.941633 0.1901499,-1.893276 0.162154,-2.844278 l 0,-30.989297 c 0.027958,-0.951002 -0.026295,-1.902643 -0.162154,-2.84428 -0.2071345,-0.918374 -0.6773614,-1.756279 -1.35304,-2.411004 H 21.180603 c -1.010129,1.011482 -1.515194,2.763244 -1.515194,5.255284 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:2.19393"
+       sodipodi:nodetypes="cccccccccccccccsccccccccsc" />
+    <path
+       class="cls-12"
+       d="m 58.839655,28.961569 v 23.56883 c -0.02592,0.850328 0.0102,1.701416 0.1079,2.54649 0.15552,0.835148 0.55032,1.60695 1.136276,2.221326 H 46.33855 c 0.585594,-0.614632 0.980336,-1.386322 1.136274,-2.221326 0.09598,-0.845212 0.13204,-1.696174 0.1079,-2.54649 v -18.85528 c 0.0251,-0.841214 -0.011,-1.68314 -0.1079,-2.519112 -0.15772,-0.820926 -0.542072,-1.581156 -1.109424,-2.194438 z M 53.226581,13.493808 c 2.984644,0.009 5.401954,2.429505 5.4109,5.418145 -0.0044,7.219516 -10.825764,7.219516 -10.82138,0 -0.02954,-3.004364 2.41013,-5.4475 5.41048,-5.418145 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:2.19393"
+       sodipodi:nodetypes="ccccccccccccccc" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:6.56367"
+       transform="matrix(0.33520771,0,0,0.3333,-2.0009489,1.5109713)" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:4.38784;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="53.548748"
+       cy="19.025356"
+       ry="5.6649303"
+       rx="5.6573563" />
+  </g>
+</svg>
diff --git a/resources/linux/icons-nightly/hicolor/128x128/apps/kicad.png b/resources/linux/icons-nightly/hicolor/128x128/apps/kicad.png
new file mode 100644
index 0000000000..239c7fa92a
Binary files /dev/null and b/resources/linux/icons-nightly/hicolor/128x128/apps/kicad.png differ
diff --git a/resources/linux/icons-nightly/hicolor/16x16/apps/kicad.png b/resources/linux/icons-nightly/hicolor/16x16/apps/kicad.png
new file mode 100644
index 0000000000..daaef8a08b
Binary files /dev/null and b/resources/linux/icons-nightly/hicolor/16x16/apps/kicad.png differ
diff --git a/resources/linux/icons-nightly/hicolor/24x24/apps/kicad.png b/resources/linux/icons-nightly/hicolor/24x24/apps/kicad.png
new file mode 100644
index 0000000000..ef773808ee
Binary files /dev/null and b/resources/linux/icons-nightly/hicolor/24x24/apps/kicad.png differ
diff --git a/resources/linux/icons-nightly/hicolor/32x32/apps/kicad.png b/resources/linux/icons-nightly/hicolor/32x32/apps/kicad.png
new file mode 100644
index 0000000000..e1d48d0cec
Binary files /dev/null and b/resources/linux/icons-nightly/hicolor/32x32/apps/kicad.png differ
diff --git a/resources/linux/icons-nightly/hicolor/48x48/apps/kicad.png b/resources/linux/icons-nightly/hicolor/48x48/apps/kicad.png
new file mode 100644
index 0000000000..25726fb728
Binary files /dev/null and b/resources/linux/icons-nightly/hicolor/48x48/apps/kicad.png differ
diff --git a/resources/linux/icons-nightly/hicolor/64x64/apps/kicad.png b/resources/linux/icons-nightly/hicolor/64x64/apps/kicad.png
new file mode 100644
index 0000000000..9e12e3a140
Binary files /dev/null and b/resources/linux/icons-nightly/hicolor/64x64/apps/kicad.png differ
diff --git a/resources/linux/icons-nightly/hicolor/scalable/apps/kicad.svg b/resources/linux/icons-nightly/hicolor/scalable/apps/kicad.svg
new file mode 100755
index 0000000000..a4e8a18d42
--- /dev/null
+++ b/resources/linux/icons-nightly/hicolor/scalable/apps/kicad.svg
@@ -0,0 +1,234 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   viewBox="0 0 48 48"
+   version="1.1"
+   id="svg5496"
+   sodipodi:docname="icon_kicad_nightly.svg"
+   width="48"
+   height="48"
+   inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:dc="http://purl.org/dc/elements/1.1/">
+  <metadata
+     id="metadata5500">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title>app_icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1920"
+     inkscape:window-height="1032"
+     id="namedview5498"
+     showgrid="true"
+     inkscape:zoom="8"
+     inkscape:cx="20"
+     inkscape:cy="15.1875"
+     inkscape:window-x="0"
+     inkscape:window-y="814"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g5494"
+     inkscape:pagecheckerboard="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid6065"
+       spacingx="0.5"
+       spacingy="0.5"
+       empspacing="2" />
+  </sodipodi:namedview>
+  <defs
+     id="defs5435">
+    <style
+       id="style5390">.cls-1{fill:none;}.cls-2{isolation:isolate;}.cls-15,.cls-3{mix-blend-mode:overlay;}.cls-4{clip-path:url(#clip-path);}.cls-16,.cls-5{opacity:0.75;}.cls-5,.cls-7{mix-blend-mode:multiply;}.cls-6{clip-path:url(#clip-path-2);}.cls-7{opacity:0.6;}.cls-8{fill:url(#Безымянный_градиент_10);}.cls-9{mix-blend-mode:saturation;fill:url(#Безымянный_градиент_28);}.cls-10{clip-path:url(#clip-path-3);}.cls-11,.cls-16{fill:#fff;}.cls-12{fill:url(#Безымянный_градиент_114);}.cls-13{fill:url(#Безымянный_градиент_104);}.cls-14{fill:#ff6d00;}.cls-15{opacity:0.5;}</style>
+    <linearGradient
+       id="Безымянный_градиент_10"
+       x1="50.0093"
+       x2="50.0093"
+       y2="100"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.57473315,2.6764188)">
+      <stop
+         offset="0"
+         stop-color="#2b4bb7"
+         id="stop5398"
+         style="stop-color:#404040;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5400"
+         style="stop-color:#262626;stop-opacity:1" />
+    </linearGradient>
+    <radialGradient
+       id="Безымянный_градиент_28"
+       cx="50.0093"
+       cy="23.271601"
+       r="28.023199"
+       gradientTransform="matrix(0,-1.0083645,1.795196,0,7.9991129,76.570283)"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0"
+         stop-color="#2b4bed"
+         id="stop5403"
+         style="stop-color:#666666;stop-opacity:1" />
+      <stop
+         offset="1"
+         stop-color="#2b2fb7"
+         id="stop5405"
+         style="stop-color:#404040;stop-opacity:1" />
+    </radialGradient>
+    <radialGradient
+       id="Безымянный_градиент_114"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         offset="0.0007"
+         stop-color="#fff"
+         stop-opacity="0"
+         id="stop5411" />
+      <stop
+         offset="0.1476"
+         stop-color="#fbfbfb"
+         stop-opacity="0.039"
+         id="stop5413" />
+      <stop
+         offset="0.3723"
+         stop-color="#f1f1f1"
+         stop-opacity="0.1465"
+         id="stop5415" />
+      <stop
+         offset="0.6466"
+         stop-color="#e0e0e0"
+         stop-opacity="0.3222"
+         id="stop5417" />
+      <stop
+         offset="0.9576"
+         stop-color="#c9c9c8"
+         stop-opacity="0.5641"
+         id="stop5419" />
+      <stop
+         offset="1"
+         stop-color="#c6c6c5"
+         stop-opacity="0.6"
+         id="stop5421" />
+    </radialGradient>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#Безымянный_градиент_114"
+       id="radialGradient6102"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)" />
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#Безымянный_градиент_114"
+       id="radialGradient6104"
+       gradientUnits="userSpaceOnUse"
+       cx="47.3605"
+       cy="53.197102"
+       r="38.302299"
+       gradientTransform="matrix(1.0068402,0,0,1.0083645,-0.44546096,2.6506114)" />
+  </defs>
+  <title
+     id="title5437">app_icon</title>
+  <g
+     class="cls-2"
+     id="g5494"
+     transform="matrix(0.45580592,0,0,0.45580592,1.3115126,-0.20085455)"
+     style="stroke-width:2.19392">
+    <rect
+       class="cls-8"
+       x="-0.56537002"
+       width="100.68402"
+       height="100.83646"
+       rx="22.374205"
+       id="rect5459"
+       y="2.676419"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_10);stroke-width:2.19392" />
+    <rect
+       class="cls-9"
+       x="-0.56537002"
+       width="100.68402"
+       height="100.83646"
+       rx="22.374205"
+       id="rect5461"
+       y="2.676419"
+       style="fill:url(#%D0%91%D0%B5%D0%B7%D1%8B%D0%BC%D1%8F%D0%BD%D0%BD%D1%8B%D0%B9_%D0%B3%D1%80%D0%B0%D0%B4%D0%B8%D0%B5%D0%BD%D1%82_28);stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="M 30.906233,47.638291 42.086387,33.476316 q 3.426981,-4.330725 3.427686,-6.476323 A 3.300422,3.305419 0 0 0 45.31935,25.751537 h 19.516187 a 22.254188,22.287881 0 0 0 -5.564503,5.270621 Q 58.21949,32.27132 56.118215,34.88732 L 41.46275,53.138718 58.95398,77.249421 q 1.24526,1.717244 4.050619,4.915877 a 18.788845,18.817293 0 0 0 1.908969,1.677314 H 44.891141 a 6.3982678,6.4079551 0 0 0 0.232984,-1.59977 q 0,-2.144489 -2.960111,-6.203056 L 30.906233,60.669084 v 15.565821 q 0,5.423085 2.181721,7.607808 H 14.77907 a 6.9549497,6.9654798 0 0 0 1.948235,-3.472203 23.711085,23.746985 0 0 0 0.233486,-4.096178 V 33.320321 A 23.722061,23.757976 0 0 0 16.727305,29.224143 6.9572655,6.967799 0 0 0 14.77907,25.75194 h 18.308884 q -2.181721,2.185026 -2.181721,7.568381 z"
+       id="path5475"
+       style="stroke-width:2.19392" />
+    <path
+       class="cls-11"
+       d="m 83.222955,41.16207 v 35.814285 a 25.157009,25.195098 0 0 0 0.155357,3.667322 6.2958722,6.3054043 0 0 0 1.636115,3.199036 H 67.874383 a 6.3068468,6.3163955 0 0 0 1.636115,-3.199036 25.895022,25.934228 0 0 0 0.155355,-3.667322 V 47.950279 A 24.950506,24.988281 0 0 0 69.510498,44.322385 6.4313929,6.4411302 0 0 0 67.913045,41.16207 Z M 76.443901,20.757914 a 7.8145899,7.8264215 0 0 1 7.791131,7.802927 7.7908285,7.8026241 0 0 1 -15.581657,0 7.7155168,7.7271984 0 0 1 7.790526,-7.802927 z"
+       id="path5477"
+       style="stroke-width:2.19392" />
+    <path
+       class="cls-12"
+       d="M 30.906233,47.638291 42.086387,33.476316 q 3.426981,-4.330725 3.427686,-6.476323 A 3.300422,3.305419 0 0 0 45.31935,25.751537 h 19.516187 a 22.254188,22.287881 0 0 0 -5.564503,5.270621 Q 58.21949,32.27132 56.118215,34.88732 L 41.46275,53.138718 58.95398,77.249421 q 1.24526,1.717244 4.050619,4.915877 a 18.788845,18.817293 0 0 0 1.908969,1.677314 H 44.891141 a 6.3982678,6.4079551 0 0 0 0.232984,-1.59977 q 0,-2.144489 -2.960111,-6.203056 L 30.906233,60.669084 v 15.565821 q 0,5.423085 2.181721,7.607808 H 14.77907 a 6.9549497,6.9654798 0 0 0 1.948235,-3.472203 23.711085,23.746985 0 0 0 0.233486,-4.096178 V 33.320321 A 23.722061,23.757976 0 0 0 16.727305,29.224143 6.9572655,6.967799 0 0 0 14.77907,25.75194 h 18.308884 q -2.181721,2.185026 -2.181721,7.568381 z"
+       id="path5479"
+       style="fill:url(#radialGradient6102);stroke-width:2.19392" />
+    <path
+       class="cls-12"
+       d="m 83.222955,41.16207 v 35.814285 a 25.157009,25.195098 0 0 0 0.155357,3.667322 6.2958722,6.3054043 0 0 0 1.636115,3.199036 H 67.874383 a 6.3068468,6.3163955 0 0 0 1.636115,-3.199036 25.895022,25.934228 0 0 0 0.155355,-3.667322 V 47.950279 A 24.950506,24.988281 0 0 0 69.510498,44.322385 6.4313929,6.4411302 0 0 0 67.913045,41.16207 Z M 76.443901,20.757914 a 7.8145899,7.8264215 0 0 1 7.791131,7.802927 7.7908285,7.8026241 0 0 1 -15.581657,0 7.7155168,7.7271984 0 0 1 7.790526,-7.802927 z"
+       id="path5481"
+       style="fill:url(#radialGradient6104);stroke-width:2.19392" />
+    <g
+       class="cls-15"
+       id="g5489"
+       style="stroke-width:2.18767"
+       transform="matrix(1.0057237,0,0,1,-0.48582001,2.6345743)" />
+    <path
+       class="cls-16"
+       d="m 16.962,33.455544 c -0.08487,-1.300791 -0.211437,-2.599766 -0.329941,-3.890675 a 4.3343462,4.3409085 0 0 0 -0.443514,-1.815056 15.481476,15.504916 0 0 0 -1.0157,-1.625786 l -0.243052,-0.342844 0.421766,-0.01009 q 4.432614,-0.110921 8.866738,-0.119492 c 1.47774,-0.02016 2.956183,0.009 4.434325,0.01431 1.478142,0.002 2.956989,0.0598 4.435332,0.08702 -1.477135,0.06746 -2.953867,0.165472 -4.431305,0.207824 -1.477437,0.04567 -2.954572,0.114751 -4.432311,0.135121 Q 19.791623,26.205697 15.3576,26.2181 l 0.178614,-0.352928 a 12.165851,12.18427 0 0 1 1.010867,1.708977 3.0507257,3.0553446 0 0 1 0.306684,0.980534 c 0.0447,0.333566 0.06393,0.65947 0.08296,0.986987 0.07874,1.305429 0.04189,2.610454 0.02527,3.913867 z"
+       id="path5491"
+       style="stroke-width:2.19392" />
+    <ellipse
+       style="fill:#ff6d00;fill-opacity:1;stroke-width:4.38784;stroke-linecap:round;stroke-linejoin:round"
+       id="path6063"
+       cx="76.170616"
+       cy="28.789175"
+       rx="8.1460009"
+       ry="8.1583338" />
+  </g>
+</svg>