stuff
This commit is contained in:
parent
86c69f60f0
commit
75f105f863
|
@ -1,5 +0,0 @@
|
||||||
# These Themes are meant only for BDv2, not BD nor BandagedBD. If you got either of those two go to [Themes](https://github.com/mwittrien/BetterDiscordAddons/tree/master/Themes/)
|
|
||||||
|
|
||||||
## Basic Background - [Download Style](https://betterdiscord.net/ghdl?url=https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/ThemesV2/BasicBackground/index.css) [Download Config](https://betterdiscord.net/ghdl?url=https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/ThemesV2/BasicBackground/config.json)
|
|
||||||
|
|
||||||
Allows you to use a background image in Discord without greatly altering the basic look of Discord.
|
|
|
@ -1,108 +0,0 @@
|
||||||
{
|
|
||||||
"info": {
|
|
||||||
"name": "BasicBackground",
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "DevilBro",
|
|
||||||
"url": "https://www.paypal.me/MircoWittrien",
|
|
||||||
"discord_id": "278543574059057154",
|
|
||||||
"github_username": "mwittrien"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"version": 1.0,
|
|
||||||
"description": "Allows you to use a background image in Discord without greatly altering the basic look of Discord. \n\nMy Support Server: http://bit.ly/DevilBrosHaus or https://discordapp.com/invite/Jx3TjNS.",
|
|
||||||
"type": "sass"
|
|
||||||
},
|
|
||||||
"main": "index.scss",
|
|
||||||
"defaultConfig": [
|
|
||||||
{
|
|
||||||
"category": "default",
|
|
||||||
"settings": [
|
|
||||||
{
|
|
||||||
"id": "var-background",
|
|
||||||
"type": "file",
|
|
||||||
"value": [
|
|
||||||
"background.jpg"
|
|
||||||
],
|
|
||||||
"text": "Background image"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-accentcolor",
|
|
||||||
"type": "colour",
|
|
||||||
"value": "rgb(190, 78, 180)",
|
|
||||||
"text": "Accent color"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-backdropcolor",
|
|
||||||
"type": "colour",
|
|
||||||
"value": "rgba(0, 0, 0, 0.4)",
|
|
||||||
"text": "Backdrop color"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-transparency-color",
|
|
||||||
"type": "colour",
|
|
||||||
"value": "rgba(0, 0, 0, 0.15)",
|
|
||||||
"text": "Transparency color"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-transparency-message",
|
|
||||||
"type": "slider",
|
|
||||||
"value": 0.5,
|
|
||||||
"min": 0,
|
|
||||||
"max": 1,
|
|
||||||
"step": 0.05,
|
|
||||||
"text": "Message transparency"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-transparency-memberlist",
|
|
||||||
"type": "slider",
|
|
||||||
"value": 0,
|
|
||||||
"min": 0,
|
|
||||||
"max": 1,
|
|
||||||
"step": 0.05,
|
|
||||||
"text": "Member list transparency"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configSchemes": [
|
|
||||||
{
|
|
||||||
"id": "default-scheme",
|
|
||||||
"name": "Reset to default",
|
|
||||||
"icon_url": "https://mwittrien.github.io/BetterDiscordAddons/ThemesV2/BasicBackground/background.jpg",
|
|
||||||
"settings": [
|
|
||||||
{
|
|
||||||
"category": "default",
|
|
||||||
"settings": [
|
|
||||||
{
|
|
||||||
"id": "var-background",
|
|
||||||
"value": [
|
|
||||||
"background.jpg"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-accentcolor",
|
|
||||||
"value": "rgb(190, 78, 180)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-backdropcolor",
|
|
||||||
"value": "rgba(0, 0, 0, 0.4)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-transparency-color",
|
|
||||||
"value": "rgba(0, 0, 0, 0.15)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-transparency-message",
|
|
||||||
"value": 0.5
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "var-transparency-memberlist",
|
|
||||||
"value": 0
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,21 +0,0 @@
|
||||||
@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/BasicBackground/BasicBackground.css);
|
|
||||||
|
|
||||||
$var-accentcolor: rgb(190, 78, 180) !default;
|
|
||||||
$var-backdropcolor: rgba(0, 0, 0, 0.4) !default;
|
|
||||||
|
|
||||||
$var-transparency-color: rgba(0, 0, 0, 0.15) !default;
|
|
||||||
$var-transparency-message: 0.5 !default;
|
|
||||||
$var-transparency-memberlist: 0 !default;
|
|
||||||
|
|
||||||
$var-background: (url: "https://mwittrien.github.io/BetterDiscordAddons/ThemesV2/BasicBackground/background.jpg") !default;
|
|
||||||
|
|
||||||
|
|
||||||
:root {
|
|
||||||
--transparencycolor: #{red($var-transparency-color)},#{green($var-transparency-color)},#{blue($var-transparency-color)};
|
|
||||||
--transparencyalpha: opacity($var-transparency-color);
|
|
||||||
--messagetransparency: $var-transparency-message;
|
|
||||||
--memberlistransparency: $var-transparency-memberlist;
|
|
||||||
--accentcolor: #{red($var-accentcolor)},#{green($var-accentcolor)},#{blue($var-accentcolor)};
|
|
||||||
--background: url(map-get($var-background, url));
|
|
||||||
--backdrop: $var-backdropcolor;
|
|
||||||
}
|
|
|
@ -1,4 +1,4 @@
|
||||||
# These Themes are meant only for BDv2, not BD nor BandagedBD. If you got either of those two go to [Themes](https://github.com/mwittrien/BetterDiscordAddons/tree/master/Themes/)
|
# These Themes are meant only for BDv2, not BD nor BandagedBD. If you got either of those two go to [Themes](https://github.com/mwittrien/BetterDiscordAddons/tree/master/Themes/).
|
||||||
|
|
||||||
## Themes
|
## Themes
|
||||||
- [Basic Background](https://github.com/mwittrien/BetterDiscordAddons/tree/master/ThemesV2/BasicBackground) - Allows you to use a background image in Discord without greatly altering the basic look of Discord.
|
- There are no working Themes right now
|
Loading…
Reference in New Issue