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/)