2020-10-20 23:25:34 +02:00
|
|
|
/**
|
|
|
|
* @name BasicBackground
|
2021-03-05 11:27:06 +01:00
|
|
|
* @description Allows you to use a Background Image without greatly altering the basic Layout of Discord
|
2020-10-20 23:25:34 +02:00
|
|
|
* @author DevilBro
|
|
|
|
* @version 1.0.5
|
|
|
|
* @authorId 278543574059057154
|
|
|
|
* @invite Jx3TjNS
|
|
|
|
* @donate https://www.paypal.me/MircoWittrien
|
|
|
|
* @patreon https://www.patreon.com/MircoWittrien
|
2021-03-09 15:10:55 +01:00
|
|
|
* @website https://mwittrien.github.io/
|
|
|
|
* @source https://github.com/mwittrien/BetterDiscordAddons/tree/master/Themes/BasicBackground/
|
2021-03-10 09:17:37 +01:00
|
|
|
* @updateUrl https://mwittrien.github.io/BetterDiscordAddons/Themes/BasicBackground/BasicBackground.theme.css
|
2020-10-20 23:28:58 +02:00
|
|
|
*/
|
2018-10-11 10:21:26 +02:00
|
|
|
|
2020-08-29 10:46:50 +02:00
|
|
|
/* To change stuff like the colors, transparency and background image, change the variables inside the root {}, do NOT change the @import url() */
|
2020-08-26 20:07:49 +02:00
|
|
|
|
2018-10-11 10:21:26 +02:00
|
|
|
@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/BasicBackground/BasicBackground.css);
|
|
|
|
|
|
|
|
:root {
|
2019-09-19 12:56:54 +02:00
|
|
|
--transparencycolor: 0,0,0; /* default: 0,0,0 */
|
|
|
|
--transparencyalpha: 0.15; /* default: 0.15 (general darkness of the app) */
|
2019-10-09 11:11:30 +02:00
|
|
|
--messagetransparency: 0.5; /* default: 0.5 (additional shadows behind messages, set to 0 to remove boxes) */
|
2019-09-19 12:56:54 +02:00
|
|
|
--guildchanneltransparency: 0.15; /* default: 0.15 (additional darkness for guild/channel list) */
|
2021-05-29 11:57:30 +02:00
|
|
|
--chatinputtransparency: 0.0; /* default: 0.0 (additional darkness for chat input container) */
|
2019-11-10 23:44:01 +01:00
|
|
|
--memberlisttransparency: 0.0; /* default: 0.0 (additional darkness for member list) */
|
2021-05-15 23:46:52 +02:00
|
|
|
--accentcolor: 190,78,180; /* default: 190,78,180 (RGB-format - blurple: 88,101,242 bd-blue: 58,113,193) */
|
2019-09-19 12:56:54 +02:00
|
|
|
|
2022-12-01 20:48:45 +01:00
|
|
|
--font: "gg sans", "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; /* font used in most places */
|
2020-02-18 13:28:37 +01:00
|
|
|
--textshadow: transparent; /* default: transparent (textshadow for text ontop of accentcolor nodes, ONLY accepts a color, no px) */
|
2023-05-06 14:30:43 +02:00
|
|
|
--settingsicons: 1; /* Use Settings Icons in User Settings: 1 = yes, 0 = no */
|
2019-12-18 10:55:02 +01:00
|
|
|
|
2021-02-18 12:11:03 +01:00
|
|
|
--background: url(https://mwittrien.github.io/BetterDiscordAddons/Themes/BasicBackground/_res/background.jpg); /* general background image */
|
2020-12-13 13:40:49 +01:00
|
|
|
--backgroundposition: center; /* default: center (position of background - values: [center/top/right/bottom/left]) */
|
|
|
|
--backgroundsize: cover; /* default: cover (sizefit of background - values: [cover/contain/auto]) */
|
2021-02-19 12:30:32 +01:00
|
|
|
--backgroundblur: unset; /* default: unset (blur in px, only works when --background is set to an image) */
|
2019-09-19 12:56:54 +02:00
|
|
|
|
|
|
|
--popout: var(--background); /* default: var(--background) (change to use another background/color for modals/popouts) */
|
2020-12-13 13:40:49 +01:00
|
|
|
--popoutposition: var(--backgroundposition); /* default: center (position of popout - values: [center/top/right/bottom/left]) */
|
|
|
|
--popoutsize: var(--backgroundsize); /* default: cover (sizefit of popout - values: [cover/contain/auto]) */
|
2021-02-19 12:30:32 +01:00
|
|
|
--popoutblur: var(--backgroundblur); /* default: unset (blur in px, only works when --popout is set to an image) */
|
2019-09-19 12:56:54 +02:00
|
|
|
|
|
|
|
--backdrop: rgba(0,0,0,0.85); /* default: rgba(0,0,0,0.85) (change to use another background/color for backdrops) */
|
2021-06-26 21:00:04 +02:00
|
|
|
--backdropposition: center; /* default: center (position of backdrop - values: [center/top/right/bottom/left]) */
|
|
|
|
--backdropsize: cover; /* default: cover (sizefit of backdrop - values: [cover/contain/auto]) */
|
|
|
|
--backdropblur: unset; /* default: unset (blur in px, only works when --backdrop is set to an image) */
|
2019-09-19 12:56:54 +02:00
|
|
|
|
2021-06-08 22:37:57 +02:00
|
|
|
--textbrightest: 255,255,255; /* default: 255,255,255 (text color for the brightest texts) */
|
|
|
|
--textbrighter: 222,222,222; /* default: 222,222,222 (text color for brighter texts) */
|
|
|
|
--textbright: 200,200,200; /* default: 200,200,200 (text color for bright texts) */
|
|
|
|
--textdark: 160,160,160; /* default: 160,160,160 (text color for dark texts) */
|
|
|
|
--textdarker: 125,125,125; /* default: 125,125,125 (text color for darker texts) */
|
|
|
|
--textdarkest: 90,90,90; /* default: 90,90,90 (text color for the darkest texts) */
|
|
|
|
|
2020-07-01 14:30:22 +02:00
|
|
|
--version1_0_5: none; /* DO NOT CHANGE THIS VARIABLE , USED TO HIDE UPDATE NOTICE */
|
2020-12-16 23:30:05 +01:00
|
|
|
}
|