Created
June 30, 2024 10:19
-
-
Save xjunko/95e098d498be54530c0580b2a5bb7163 to your computer and use it in GitHub Desktop.
simple discord theme config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* | |
* @name Nurse Type T | |
* @description TypeT my belvoed | |
* @author xJunko | |
* @version 1.0.9 | |
* @authorId 736223131240497183 | |
* | |
*/ | |
@import url(https://mwittrien.github.io/BetterDiscordAddons/Themes/BasicBackground/BasicBackground.css); | |
@import url(https://minidiscordthemes.github.io/Squared/Squared.theme.css); | |
:root { | |
--transparencycolor: 0, 0, 0; | |
/* default: 0, 0, 0 */ | |
--transparencyalpha: 0.7; | |
/* default: 0.15 (general darkness of the app) */ | |
--messagetransparency: 0.0; | |
/* default: 0.5 (additional shadows behind messages, set to 0 to remove boxes) */ | |
--guildchanneltransparency: 0.4; | |
/* default: 0.15 (additional darkness for guild/channel list) */ | |
--chatinputtransparency: 0.5; | |
/* default: 0.0 (additional darkness for chat input container) */ | |
--memberlisttransparency: 0.5; | |
/* default: 0.0 (additional darkness for member list) */ | |
--accentcolor: 124, 134, 149; | |
/* default: 190, 78, 180 (RGB-format - blurple: 88, 101, 242 bd-blue: 58, 113, 193) */ | |
--settingsicons: 1; | |
/* Use Settings Icons in User Settings: 1 = yes, 0 = no */ | |
--font: "gg sans", "Noto Sans"; | |
/* font used in most places */ | |
--textshadow: transparent; | |
/* default: transparent (textshadow for text ontop of accentcolor nodes, ONLY accepts a color, no px) */ | |
--background: url(https://cdn.donmai.us/original/3f/fc/__nurse_robot_type_t_utau_drawn_by_iris_yi__3ffcffb6a92b371924cda3f58f139143.jpg); | |
/* general background image */ | |
--backgroundposition: center; | |
/* default: center (position of background - values: [center/top/right/bottom/left]) */ | |
--backgroundsize: cover; | |
/* default: cover (sizefit of background - values: [cover/contain/auto]) */ | |
--backgroundblur: 0; | |
/* default: 0 (blur in px, only works when --background is set to an image) */ | |
--popout: var(--background); | |
/* default: var(--background) (change to use another background/color for modals/popouts) */ | |
--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]) */ | |
--popoutblur: var(--backgroundblur); | |
/* default: 0 (blur in px, only works when --popout is set to an image) */ | |
--backdrop: rgba(0, 0, 0, 0.85); | |
/* default: rgba(0, 0, 0, 0.85) (change to use another background/color for backdrops) */ | |
--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: 0; | |
/* default: 0 (blur in px, only works when --backdrop is set to an image) */ | |
--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) */ | |
--version1_0_5: none; | |
/* DO NOT CHANGE THIS VARIABLE , USED TO HIDE UPDATE NOTICE */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment