diff --git a/portal/assets/themes/random/custom_overlay.css b/portal/assets/themes/random/custom_overlay.css
deleted file mode 100644
index 0074f3e..0000000
--- a/portal/assets/themes/random/custom_overlay.css
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
-===============================================================================
- This file may contain extra CSS rules loaded on all apps page (*if* the app
- nginx's conf does include the appropriate snippet) for the small YunoHost
- button in bottom-right corner + portal overlay.
-
- The yunohost button corresponds to : #ynh-overlay-switch
- The yunohost portal overlay / iframe corresponds to : #ynh-overlay
-
- BE CAREFUL that you should *not* add too-general rules that apply to
- non-yunohost elements (for instance all 'a' or 'p' elements...) as it will
- likely break app's rendering
-===============================================================================
-*/
diff --git a/portal/assets/themes/random/custom_portal.css b/portal/assets/themes/random/custom_portal.css
deleted file mode 100644
index 9018fb6..0000000
--- a/portal/assets/themes/random/custom_portal.css
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
-===============================================================================
- This file contain extra CSS rules to customize the YunoHost user portal and
- can be used to customize app tiles, buttons, etc...
-===============================================================================
-*/
-
-.app-tile:focus:after,
-.app-tile:hover:after,
-.app-tile:focus:before,
-.app-tile:hover:before {
- background:var(--background-color, red) !important;
-}
diff --git a/portal/assets/themes/random/custom_portal.js b/portal/assets/themes/random/custom_portal.js
deleted file mode 100644
index 0524a95..0000000
--- a/portal/assets/themes/random/custom_portal.js
+++ /dev/null
@@ -1,145 +0,0 @@
-/*
-===============================================================================
- This JS file may be used to customize the YunoHost user portal *and* also
- will be loaded in all app pages if the app nginx's conf does include the
- appropriate snippet.
-
- You can monkeypatch init_portal (loading of the user portal) and
- init_portal_button_and_overlay (loading of the button and overlay...) to do
- custom stuff
-===============================================================================
-*/
-
-var ynhLib = {
-
- //
- // RANDOMIZATION UTILITIES
-
- random: {
- integer: function(min, max){
- return Math.floor(Math.random() * (max - min + 1)) + min;
- },
- number: function (min, max) {
- return Math.random() * (max - min) + min;
- },
- entry: function (array) {
- return array[ynhLib.random.integer(0, array.length-1)];
- },
- rgbInteger: function () { return ynhLib.random.integer(0,255); },
- // generate random rgba color
- color: function (transparency) {
- // transparency
- var transparency;
- if (transparency === null || transparency === false) transparency = 1
- else if (typeof transparency == "number") transparency = transparency
- else transparency = ynhLib.random.number (0,1);
- // random color
- return [ ynhLib.random.rgbInteger(), ynhLib.random.rgbInteger(), ynhLib.random.rgbInteger(), transparency ];
- },
- },
-
- //
- // COLOR HANDLING UTILITIES
-
- color: {
-
- // rgbColor <[number, number, number(, number)]>
- toCSS: function (rgbColor) {
- // rgba color
- if (rgbColor.length == 4) return "rgba("+ rgbColor[0] +","+ rgbColor[1] +","+ rgbColor[2] +","+ rgbColor[3] +")"
- // rgb color
- else return "rgb("+ rgbColor[0] +","+ rgbColor[1] +","+ rgbColor[2] +")";
- },
-
- // Luminosity function adpated from color library: https://github.com/Qix-/color
- // rgbColor <[number, number, number]>
- luminosity: function (rgbColor) {
- // http://www.w3.org/TR/WCAG20/#relativeluminancedef
-
- var lum = [];
- for (var i = 0; i < rgbColor.length; i++) {
- var chan = rgbColor[i] / 255;
- lum[i] = (chan <= 0.03928) ? chan / 12.92 : Math.pow(((chan + 0.055) / 1.055), 2.4);
- }
-
- return 0.2126 * lum[0] + 0.7152 * lum[1] + 0.0722 * lum[2];
- },
-
- // color <[number, number, number]>
- getContrastColor: function (color) {
- var light = "white", dark = "black";
- return ynhLib.color.luminosity(color) > 0.5 ? dark : light;
- },
-
- },
-
- //
- // UTILITIES
-
- queue: function (queueTo, queue) {
- if (typeof queueTo != 'function') var fullQueue = queue
- else if (typeof queue != 'function') var fullQueue = queueTo
- else var fullQueue = function () {
- queueTo.apply(this, arguments);
- queue.apply(this, arguments);
- };
- return fullQueue;
- },
-
- //
- // SET APP ICON STYLE
-
- set_app_tile_style: function (el) {
- var appColor = ynhLib.random.color();
- var appContrastColor = ynhLib.color.getContrastColor(appColor);
- var style = 'background-color:'+ ynhLib.color.toCSS(appColor) +' !important; color:'+ appContrastColor +' !important; --background-color:'+ ynhLib.color.toCSS(appColor);
- el.setAttribute("style", style);
- },
-
- //
- // LOGO CUSTOMIZATION
-
- logo: {
-
- availableColors: ["cyan", "fushia", "green", "orange", "pink", "purple", "red", "yellow"],
- makeLogoStyleString: function () {
- return 'background-image: url("/yunohost/sso/assets/themes/random/logo/'+ ynhLib.random.entry(ynhLib.logo.availableColors) +'.svg")';
- },
-
- },
-
-};
-
-// ######################################################################
-// ######################################################################
-
-/* Monkeypatch init_portal to customize the app tile style */
-init_portal_original = init_portal;
-init_portal = function()
-{
- init_portal_original();
-
- // set apps colors
- Array.each(document.getElementsByClassName("app-tile"), ynhLib.set_app_tile_style);
-
- // log color css string
- var chosenLogoStyleString = ynhLib.logo.makeLogoStyleString();
-
- // set logo color in portal
- var ynhLogo = document.getElementById("ynh-logo");
- if (ynhLogo) ynhLogo.setAttribute("style", chosenLogoStyleString);
-}
-
-/*Monkey patching example to do custom stuff when loading inside an app */
-init_portal_button_and_overlay_original = init_portal_button_and_overlay;
-init_portal_button_and_overlay = function()
-{
- init_portal_button_and_overlay_original();
-
- // log color css string
- var chosenLogoStyleString = ynhLib.logo.makeLogoStyleString();
-
- // set overlay switch color in apps (NOTE: this is not always working, there is probably a problem of loading order)
- var overlaySwitch = document.getElementById("ynh-overlay-switch");
- if (overlaySwitch) overlaySwitch.setAttribute("style", chosenLogoStyleString);
-}
diff --git a/portal/assets/themes/random/logo/cyan.svg b/portal/assets/themes/random/logo/cyan.svg
deleted file mode 100644
index 5c0ebee..0000000
--- a/portal/assets/themes/random/logo/cyan.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/portal/assets/themes/random/logo/fushia.svg b/portal/assets/themes/random/logo/fushia.svg
deleted file mode 100644
index 6614e8f..0000000
--- a/portal/assets/themes/random/logo/fushia.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/portal/assets/themes/random/logo/green.svg b/portal/assets/themes/random/logo/green.svg
deleted file mode 100644
index 8f72257..0000000
--- a/portal/assets/themes/random/logo/green.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/portal/assets/themes/random/logo/orange.svg b/portal/assets/themes/random/logo/orange.svg
deleted file mode 100644
index eb3d421..0000000
--- a/portal/assets/themes/random/logo/orange.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/portal/assets/themes/random/logo/pink.svg b/portal/assets/themes/random/logo/pink.svg
deleted file mode 100644
index d2306f0..0000000
--- a/portal/assets/themes/random/logo/pink.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/portal/assets/themes/random/logo/purple.svg b/portal/assets/themes/random/logo/purple.svg
deleted file mode 100644
index 9a7cfd4..0000000
--- a/portal/assets/themes/random/logo/purple.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/portal/assets/themes/random/logo/red.svg b/portal/assets/themes/random/logo/red.svg
deleted file mode 100644
index 25c7834..0000000
--- a/portal/assets/themes/random/logo/red.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/portal/assets/themes/random/logo/yellow.svg b/portal/assets/themes/random/logo/yellow.svg
deleted file mode 100644
index 74c1172..0000000
--- a/portal/assets/themes/random/logo/yellow.svg
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
\ No newline at end of file