From 20592b94c83910bf2c592b99a477ac75330dc275 Mon Sep 17 00:00:00 2001 From: DJKnaeckebrot <46864390+DJKnaeckebrot@users.noreply.github.com> Date: Sat, 4 Nov 2023 12:51:17 +0100 Subject: [PATCH] Added background image --- src/docs/icons/backgroundImage.md | 19 +++++++++++++++++++ src/docs/icons/index.md | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 src/docs/icons/backgroundImage.md diff --git a/src/docs/icons/backgroundImage.md b/src/docs/icons/backgroundImage.md new file mode 100644 index 00000000..99c68143 --- /dev/null +++ b/src/docs/icons/backgroundImage.md @@ -0,0 +1,19 @@ +# Favicon + +#### **[Parent: icons](/docs/icons/)** + +A [String](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String) which is the background image on the settings page of the guilds. + +## Example Usage + +```js +theme: SoftUI({ + icons: { + backgroundImage: "https://www.imageshine.in/uploads/gallery/geometric-Blue-Wallpaper-Free-Download.jpg" + } +}) +``` + +## Types + +- [String](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String) diff --git a/src/docs/icons/index.md b/src/docs/icons/index.md index 6f5c1e4a..92f209d4 100644 --- a/src/docs/icons/index.md +++ b/src/docs/icons/index.md @@ -7,6 +7,7 @@ An [Object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Gl ```js theme: SoftUI({ icons: { + backgroundImage: "https://www.imageshine.in/uploads/gallery/geometric-Blue-Wallpaper-Free-Download.jpg", favicon: "https://assistantscenter.com/wp-content/uploads/2021/11/cropped-cropped-logov6.png", noGuildIcon: "https://pnggrid.com/wp-content/uploads/2021/05/Discord-Logo-Circle-1024x1024.png", sidebar: { @@ -22,6 +23,7 @@ theme: SoftUI({ ## Properties +- [backgroundImage](/docs/icons/backgroundImage) - [favicon](/docs/icons/favicon) - [noGuildIcon](/docs/icons/noGuildIcon) - [sidebar](/docs/icons/sidebar/)