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

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.

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.

  • After clicking on the font file, get the RAW link/url of that font file.

  • 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 use the below css snippet (paste it at the very bottom of the Edit Quick CSS):

/* Reset groupchat name font */.input_f8b740 { font-family: var(--font-name) !important; /* Write the font name here */ font-weight: inherit !important; /* Self explanatory */}

  • If you want, you can replace var(--font-name) with your custom font name if you are planning on using multiple fonts at once.

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 six or seven 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 give a bit more performance boost.

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 29 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 34 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 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 the use/paste below css snippet at the very end:

If you are using dark mode, then the below css snippet

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

Or, if you are using light mode, then the below css snippet

/* hide message in the sidebar when using light mode */.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.

13. 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.

14. 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 related to theming is 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.

15. How to get rid of the mobile icon besides the avatar?

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

  • Now go to the line 92 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.

16. 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 */}

Still Have Question(s)?

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

Last modified: 04 August 2024

Common FAQsFAQ BetterDiscord Edition

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

References

Top Articles
May Full Moon | Facts, Information, History, Names, Dates & Meaning
Moon Phase Today | Moon Tonight | Moon Phase Calculator 2024 | Next New Moon
Blackstone Launchpad Ucf
Benchmark Physical Therapy Jobs
Provider Connect Milwaukee
Www Craigslist Com Wisconsin Milwaukee
Www.citizen-Times.com Obituaries
Celebrity Guest Tape Free
Tyson Employee Paperless
The Blind Showtimes Near Merchants Walk Cinemas
Mistar Student Portal Southfield
Cpcon Protection Priority Focus
Mandy Sacs On BLP Combine And The Vince McMahon Netflix Documentary
Craigslist Farm And Garden Yakima Wa
8 Restaurant-Style Dumpling Dipping Sauces You Can Recreate At Home
Word Jam 1302
Syoss Oleo Intense - 5-10 Cool Bruin - Permanente Haarverf - Haarkleuring - 1 stuk | bol
8 Garden Sprayers That Work Hard So You Don't Have To
Masdar | Masdar’s Youth 4 Sustainability Announces COP28 Program to Empower Next Generation of Climate Leaders
Meet Scores Online 2022
Sauce 423405
Itawamba Ixl
Ar Kendrithyst
Berkeley Law Bookstore
Craigslist Gaming Chair
How to Be an Extra in a Movie (and What to Expect)
The Boogeyman Showtimes Near Marcus Menomonee Falls Cinema
What Does FYP Mean on TikTok?
Weather In Allentown-Bethlehem-Easton Metropolitan Area 10 Days
Seanna: meaning, origin, and significance explained
Oh The Pawsibilities Salon & Stay Plano
Davias Grille
Spiral Roll Unblocked Games Premium
Saint Lukes Epulse
Palmer Santin Funeral Home Fullerton Nebraska Obituaries
02080797947
Biopark Prices
Top Chef Airer Nyt Crossword Clue
Odawa Hypixel
Planet Zoo Obstructed
Fade En V Pelo Corto
Associate Resources Aces-How To Create An Account And How Its Features Work
Nz Herald Obituary Notices
Detroit Lions Den Forum
4Myhr Mhub
Motorcycle Sale By Owner
Craigslist In Killeen Tx
Ukg Dimensions Urmc
Wyoming Roads Cameras
Currently Confined Coles County
Unblocked Games 67 Ez
Six Broadway Wiki
Latest Posts
Article information

Author: Prof. Nancy Dach

Last Updated:

Views: 6161

Rating: 4.7 / 5 (57 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Prof. Nancy Dach

Birthday: 1993-08-23

Address: 569 Waelchi Ports, South Blainebury, LA 11589

Phone: +9958996486049

Job: Sales Manager

Hobby: Web surfing, Scuba diving, Mountaineering, Writing, Sailing, Dance, Blacksmithing

Introduction: My name is Prof. Nancy Dach, I am a lively, joyous, courageous, lovely, tender, charming, open person who loves writing and wants to share my knowledge and understanding with you.