FAQ Vencord Edition | C H I L L A X (2024)

Table of Contents
Before starting 1. How to change the background/background image of CHILLAX? Procedure to host images on GitHub: To host image on GitHub 2. How to change/use another font(s)? Alternatively, if you want to use a downloaded font: 3. How to change the font size? 4. How to change the accent color (The Below RED thing/part see attached screenshot)? 5. How to change the theme welcome username? 6. How to make it so that desktop wallpaper/wallpaper engine's wallpaper is visible through? 7. How to change the font of the group chat? 8. CHILLAX is laggy or slow, very slow, any fix? Almost 99% of the time this is the reason behind lag. 9. How to make the member list always stay visible instead of on hover? 10. How to get back the old emojis? 11. How to get rid of the Folder Icons and Make it like the old discord? 12. How to get rid of the Radial Status/Ring around the user profile picture/image? 13. How to get rid of the Friend Grid? 14. How to get rid of the below-attached ugly thing? 15. How to use Dark/Light mode in Chillax Theme? 16. After applying the Chillax theme, it looks funny and/or transparent/see through background is missing, what to do? 17. How to get rid of the mobile icon beside the avatar? 18. How to change the color of urls/links? 19. How to change the input placeholder value from " Life is so much easier when you just take a moment to chill " to something that I want? 20. How to change the Avatar Only Member list's rounder corner/border radius? 21. How to change the typing indicator text? Still Have Question(s)? FAQs References
FAQ Vencord Edition | C H I L L A X (1)

Before starting

Before going or reading any further, make sure that you have installed C H I L L A X follwoing the instructions given in Installation Guide for Vencord.

1. How to change the background/background image of CHILLAX?

The steps are first settings, then go to the VENCORD Section and then Themes. Finally, click Edit Quick CSS which should open the integrated Monaco (It's already there no need for installation as this is part of the Vencord itself) code editor. Now using this Editor, you can easily edit CSS with hot reloading. See the below-attached screenshots:

  1. FAQ Vencord Edition | C H I L L A X (2)
  2. FAQ Vencord Edition | C H I L L A X (3)
  3. FAQ Vencord Edition | C H I L L A X (4)

Now to go to line number 46 (at the time of writing, the line number is 46 which in a later version might change) or where the variable --wallpaper defined and change the url that is within the single quote "" to the wallpaper/gif cdn url that you want to set.

See the below screenshots:

FAQ Vencord Edition | C H I L L A X (5)

Now your favourite background image/gif should be applied. Moreover, if you need to control the opacity of the background, please adjust the CSS variable --bg-opacity.

Procedure to host images on GitHub:

To host image on GitHub

  1. First create a public GitHub repository with the name of your choice.

  2. Once done creating the repository, add image(s)/gif(s) via the Add File > Upload Files.

  3. After image uploading commit the changes and go back to the repository.

  4. Now click on the image/gif that you want to set and this will take you the image/gif which is now hosted on GitHub.

  5. After that right-click (mouse) on the image and then click on Open image in a new tab.

  6. Finally, copy the URL/Link from the browser and paste into the appropriate CSS Variable described/shown earlier.

Congratulation! Now you know how to host images on GitHub.

This process not only applies to image/gif but also for virtually anything including fonts etc.

2. How to change/use another font(s)?

First, make sure that the font you are trying to use is already hosted somewhere if it is not already. Most of the time you will be using google fonts. From there, choose the font you are looking for and adjust all the settings and everything (font weights, size, etc.) and then copy the CSS import url. See the below screenshots:

  1. FAQ Vencord Edition | C H I L L A X (6)
  2. FAQ Vencord Edition | C H I L L A X (7)
  3. FAQ Vencord Edition | C H I L L A X (8)
  4. FAQ Vencord Edition | C H I L L A X (9)
  5. FAQ Vencord Edition | C H I L L A X (10)
  6. FAQ Vencord Edition | C H I L L A X (11)
    • Only copy the highlighted part. In your case, the link can be different.

  7. FAQ Vencord Edition | C H I L L A X (12)
    • Now go to Settings > Themes > Edit Quick CSS.

    • Paste the copied link at the top just like the above screenshot and put the ; at the end of it.

  8. FAQ Vencord Edition | C H I L L A X (13)
    • Now change the --font-nane to the name of the font that you have just imported.

    • Optionally adjust the --font-size if you need to.

And now the new font(s) should be applied.

Alternatively, if you want to use a downloaded font:

  • Host the font somewhere. GitHub is a good place.

  • For GitHub, all you have to do is create a new repo and upload the font there.

  • The process on how to host a font on GitHub is very similar to the described procedure here.

  • After clicking on the font file, right-click (mouse) on the RAW button located at the right corner and then click Open link in a new tab button. Finally, copy RAW GitHub URL/Link.

  • Now just like in the previous Step 7, we import the font, but this time use the RAW GitHub link instead of the Google font approach. See the below for comparison:

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

instead, it will be

@font-face { font-family: "Font Name"; /* Replace with the name of the font here */ src: url("RAW GitHub Link"); /* Replace with the hosted github raw link */}

3. How to change the font size?

  • Go to Settings > Themes > Edit Quick CSS.

  • Find the CSS Variable --font-size and change it to your needs.

That's it.

4. How to change the accent color (The Below RED thing/part see attached screenshot)?

FAQ Vencord Edition | C H I L L A X (14)
  • Go to Settings > Themes > Edit Quick CSS.

  • Find the CSS Variables --accentcolor, --accentcolor2 and change them to your needs.

  • You may want to play around with them to find the right balance.

5. How to change the theme welcome username?

  • Go to Settings > Themes > Edit Quick CSS.

  • Find the CSS Variables --user-name and change it.

6. How to make it so that desktop wallpaper/wallpaper engine's wallpaper is visible through?

However, if you have decided to make up your mind, then

  • Go to Settings > Vencord > Enable Window Transparency and turn it on.

  • Now Settings > Themes > Edit Quick CSS and remove the --wallpaper CSS Variable mentioned in here.

  • Your window should now be transparent or see through etc.

  • Now you may want to add a bit of blur to make things readable in the container__037ed. However, discord uses electron, and we have found it to work differently on different OS, and the window manager of your OS also plays a vital role here. So, the below CSS snippet may or may not work properly (Translucence is enabled in window manager level). In case it does not work, it will at least make the container__037ed basically that region a bit darker.

    .container__037ed { background-color: rgba(255, 255, 255, 0) !important; /* Semi-transparent white for light theme */ /* Or use this for dark theme: background-color: rgba(0, 0, 0, 0.1); */ backdrop-filter: blur(1px) !important; /*Blur the background*/ border-radius: 10px; /* Rounded corners */ /* Or use this for dark theme: border: 1px solid rgba(0, 0, 0, 0.2); */ box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important; /* Optional: Add a box shadow for depth */ }

7. How to change the font of the group chat?

  • We have already mentioned how you can import a custom font and use it here.

  • Now, the steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • After that, find the CSS variable --group-chat-font and provide the font name that you like to use within " " (double quote).

  • Make sure that the font that you are trying to set is available in the theme context.

8. CHILLAX is laggy or slow, very slow, any fix?

  • Make sure that Hardware Acceleration is on. If not, then turn it on.

  • The steps are first Settings, then Advance and then turn on Hardware Acceleration.

Almost 99% of the time this is the reason behind lag.

If you are on a system that is not older than eight or nine years, the theme should work fine without any lag.

However, as a last resort you can

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Uncomment line 37 different/or which says /*@import url("https://warrayquipsome.github.io/Chillax/Addons/SimpleLessLag.css");*/ See the below screenshots:

  1. FAQ Vencord Edition | C H I L L A X (15)
    • Uncomment this line, and it should look something like the below screenshot:

  2. FAQ Vencord Edition | C H I L L A X (16)
  • This should make it a little less laggy.

Consequently, you can try out OpenAsar which is part of the Vencord installer. This should make Discord a bit more performant, reducing the lag by a bit.

9. How to make the member list always stay visible instead of on hover?

This is basically an addon; to remove it:

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Remove or comment out the line (currently line number 33 and maybe different in your case) containing @import url("https://warrayquipsome.github.io/Chillax/Addons/AvatarOnlyMemberList.css");. Now the member list will always be visible instead of on hover. See the below screenshots:

  1. FAQ Vencord Edition | C H I L L A X (17)
    • Now remove/comment out this line.

  2. FAQ Vencord Edition | C H I L L A X (18)
    • Finally, you should have something like this:

  3. FAQ Vencord Edition | C H I L L A X (19)

10. How to get back the old emojis?

This is also very similar to the previous FAQ. This thing is also an addon. Remove it to get back default emojis:

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Remove or comment out the line (currently line number 27 and maybe different in your case) containing @import url("https://mwittrien.github.io/BetterDiscordAddons/Themes/EmojiReplace/base/Microsoft.css");.

  • Now you should have the old emojis.

11. How to get rid of the Folder Icons and Make it like the old discord?

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Remove or comment out the line (currently line number 32 and maybe different in your case) containing @import url("https://warrayquipsome.github.io/Chillax/Addons/FolderRedesign.css");.

  • Now it should be normal like the old Discord.

12. How to get rid of the Radial Status/Ring around the user profile picture/image?

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Remove or comment out the line (currently line number 33 and maybe different in your case) containing @import url("https://discordstyles.github.io/RadialStatus/dist/RadialStatus.css");.

Now, it should be similar to the default discord style with slight drop shadow around the transparent images.

13. How to get rid of the Friend Grid?

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Remove or comment out the line (currently line number 34 and maybe different in your case) containing @import url("https://warrayquipsome.github.io/Chillax/Addons/FriendGrid.css");.

Now the friend grid should be similar to the default Discord.

14. How to get rid of the below-attached ugly thing?

FAQ Vencord Edition | C H I L L A X (20)
  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Now use/paste the below CSS snippet for the respective mode(Dark/Light) at the very end of the Edit Quick CSS:

/* hide message in the sidebar when using dark mode */ html.theme-dark .sidebar_a4d4d9 .content_eed6a8:after { color: rgba(255, 255, 255, 0) !important; text-shadow: none !important; }

/* hide message in the sidebar when using light mode */ html.theme-light .sidebar_a4d4d9 .content_eed6a8:after { color: rgba(255, 255, 255, 0) !important; text-shadow: none !important; }

  • Now it should be a bit better.

15. How to use Dark/Light mode in Chillax Theme?

You can enable Dark or Light mode from the Discord Settings. Steps are:

  • Now go to Settings > Appearance.

  • Finally, choose either Light mode or Dark mode based on your preference, and Chillax will reflect that.

16. After applying the Chillax theme, it looks funny and/or transparent/see through background is missing, what to do?

Before applying the theme:

  • Firstly, make sure that there is no custom CSS or CSS snippet(s) is/are running.

  • Secondly, make sure that no party plugin or any plugins in general related to theming are running (if debugging, disable all plugins for quicker conclusion).

  • Thirdly, Settings > Appearance is set to either Dark or light mode.

  • Now apply the Latest version of Chillax.

  • Now you should have Chillax with the default look and feel.

17. How to get rid of the mobile icon beside the avatar?

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Now go to the line 95 or find the line that says --rs-phone-visible: block; and change this line to the below line:

    --rs-phone-visible: none;

  • Now mobile icon or phone icon should be gone.

18. How to change the color of urls/links?

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Now apply the below CSS snippet, which will change the color of every url to the color of your choice.

[href^="http://"], [href^="https://"], [href^="www."] { color: #30d944 !important; /* change it to whatever you like */}

19. How to change the input placeholder value from " Life is so much easier when you just take a moment to chill " to something that I want?

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Now find the CSS variables --chillax-input-field and --chillax-input-field-locked.

  • Change them according to what you like most.

20. How to change the Avatar Only Member list's rounder corner/border radius?

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Now find the CSS variable --memberlist-border-radius and change the pixel as per your preference.

  • If you don't like the border radius and want it to be a rectangle, set the value to 0px.

21. How to change the typing indicator text?

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Now find the CSS variables --chillax-input-typing-indicator-one-person and --chillax-input-typing-indicator-many-person.

  • Change them according to what you like most.

  • The steps are first Settings, then go to the Themes Section and then Edit Quick CSS.

  • Now find the CSS variable --chillax-scroller-color which is by default set to transparent.

  • Change it to a hex color of your choice, and the scrollbar/scroll wheel should appear.

Still Have Question(s)?

Join our support Discord Server and ask for help and do not be shy.

Last modified: 07 September 2024

Common FAQsFAQ BetterDiscord Edition

FAQ Vencord Edition | C H I L L A X (2024)

FAQs

Can you get banned for using Vencord? ›

Will I get banned for using Vencord? Will plugin X get me banned? Client modifications are against Discord's Terms of Service. However, Discord is pretty indifferent about them and there are no known cases of users getting banned for using client mods!

What does Vencord do on Discord? ›

It appears to be a 3rd party plugin set for Discord and it gives you many many options that include being able to see hidden channels that they do not have access too!

How do I add custom plugins to Vencord? ›

Install Guide
  1. place the plugins inside the userplugins folder (vencord/src/userplugins)
  2. run pnpm build and pnpm inject again.
  3. enable the plugin in discord settings.

Is there Vencord for mobile? ›

Vendroid is a custom Discord client for Android. The way it works is that it loads the discord.com website and injects Vencord. Discord's mobile site is not very usable since it has many issues. As such, this is mostly just a proof of concept and is not actively worked on.

How to use fake nitro on Vencord? ›

To enable FakeNitro, first install Vencord if you haven't already done so. Then open the Plugins section in settings, search for FakeNitro, and enable it.

Is BetterDiscord bannable in 2024? ›

Yes, but unless you do something egregious, such as use it to selfbot or use unapproved plugins, you'll be fine.

What does invisible chat do on Vencord? ›

InvisibleChat. Encrypt your Messages in a non-suspicious way!

What quality is the Vencord stream? ›

Vencord-Vesktop allows users to stream with more than the default 720p 30fps. It enables streaming with native screen resolution and 60fps.

Does Vencord work on a browser? ›

Excellent Browser Support

Works just as well inside your favourite Browser!

How does a Vencord message logger work? ›

This is a third-party-plugin for Vencord that logs messages, images, and ghost pings in Discord. The plugin saves messages to a json file, and can restore them after reloading Discord.

How to edit Vencord theme? ›

Vencord
  1. Go to your theme of choice.
  2. Find the .theme.css file. ...
  3. Copy all of the contents inside that file by clicking the button at the top right.
  4. Go to your Vencord themes tab.
  5. Click the "Open QuickCSS file" button.
  6. Paste the contents you copied from before.
  7. Edit any --variable-name inside of the :root brackets.

What is ArmCord? ›

ArmCord is a custom client designed to enhance your Discord experience while keeping everything lightweight.

What is pyoncord? ›

A client mod for Discord mobile, fork of Vendetta.

What is vesktop? ›

Vesktop is a custom Discord App aiming to give you better performance and improve linux support.

Can you be banned for using BetterDiscord? ›

Your account is not at risk for simply using BetterDiscord alone. Abusing the service or using plugins which further violate the Terms of Service can get your account terminated, however. All plugins from our official website are safe.

What gets you banned on Roblox? ›

Harass, bully, discriminate, or harm others outside of Roblox. Share others' personal information off-platform, including making false reports to authorities. Have been convicted of certain egregious crimes, engage in certain illegal activities, or encourage others to do so.

Can a website device ban you? ›

Users are required to abide by the rules set forth on websites. The website may ban an IP address if a user violates these conditions. For instance, if an IP address is linked to activities like spamming, disseminating illegal content, or posting hate speech, that IP address will be blacklisted.

References

Top Articles
Tmj4 Weather Milwaukee
What Time Does Ups Near Me Close
Kem Minnick Playboy
Horoscopes and Astrology by Yasmin Boland - Yahoo Lifestyle
CKS is only available in the UK | NICE
BULLETIN OF ANIMAL HEALTH AND PRODUCTION IN AFRICA
CHESAPEAKE WV :: Topix, Craigslist Replacement
Pike County Buy Sale And Trade
Gw2 Legendary Amulet
Over70Dating Login
Culver's Flavor Of The Day Monroe
Premier Boating Center Conroe
Power Outage Map Albany Ny
Edible Arrangements Keller
Bc Hyundai Tupelo Ms
‘Accused: Guilty Or Innocent?’: A&E Delivering Up-Close Look At Lives Of Those Accused Of Brutal Crimes
Colts seventh rotation of thin secondary raises concerns on roster evaluation
How to find cash from balance sheet?
Swgoh Turn Meter Reduction Teams
Farmer's Almanac 2 Month Free Forecast
Jalapeno Grill Ponca City Menu
3476405416
Curry Ford Accident Today
Arre St Wv Srj
Amih Stocktwits
Sea To Dallas Google Flights
Johnnie Walker Double Black Costco
Gina Wilson All Things Algebra Unit 2 Homework 8
Cain Toyota Vehicles
Cpt 90677 Reimbursem*nt 2023
Sorrento Gourmet Pizza Goshen Photos
Hesburgh Library Catalog
Leben in Japan – das muss man wissen - Lernen Sie Sprachen online bei italki
Lindy Kendra Scott Obituary
Lilpeachbutt69 Stephanie Chavez
Till The End Of The Moon Ep 13 Eng Sub
Most popular Indian web series of 2022 (so far) as per IMDb: Rocket Boys, Panchayat, Mai in top 10
Selfservice Bright Lending
Austin Automotive Buda
Hellgirl000
Kornerstone Funeral Tulia
Final Jeopardy July 25 2023
Jasgotgass2
511Pa
The Angel Next Door Spoils Me Rotten Gogoanime
Craigslist Odessa Midland Texas
Pathfinder Wrath Of The Righteous Tiefling Traitor
Truck Works Dothan Alabama
Elven Steel Ore Sun Haven
Florida Lottery Powerball Double Play
Lebron James Name Soundalikes
Product Test Drive: Garnier BB Cream vs. Garnier BB Cream For Combo/Oily Skin
Latest Posts
Article information

Author: Msgr. Benton Quitzon

Last Updated:

Views: 6268

Rating: 4.2 / 5 (63 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Msgr. Benton Quitzon

Birthday: 2001-08-13

Address: 96487 Kris Cliff, Teresiafurt, WI 95201

Phone: +9418513585781

Job: Senior Designer

Hobby: Calligraphy, Rowing, Vacation, Geocaching, Web surfing, Electronics, Electronics

Introduction: My name is Msgr. Benton Quitzon, I am a comfortable, charming, thankful, happy, adventurous, handsome, precious person who loves writing and wants to share my knowledge and understanding with you.