Skip to content

Commit

Permalink
Merge branch 'Docs'
Browse files Browse the repository at this point in the history
  • Loading branch information
Inmoresentum committed Mar 3, 2024
2 parents 5c5e00e + 8d6539a commit fcf8c45
Show file tree
Hide file tree
Showing 21 changed files with 298 additions and 5 deletions.
286 changes: 286 additions & 0 deletions Docs/FAQs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,286 @@
<h1 align="center">C H I L L A X FAQs</h1>
<div align="center">
<img align="center" src="https://media.tenor.com/bYgWUSFEfYYAAAAi/discord-vencord.gif" alt="wq is loading"/>
<h3 align="center">
<a href="https://vencord.dev/">Vencord Edition</a>
</h3>
</div>

### 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 integrated
(*Its already there not need for installation*) [Monaco](https://microsoft.github.io/monaco-editor/) code editor.
Now using this Editor, you can easily edit css with hot reloading.
See the below-attached screenshots:

1. <img src="images/bg_change/go_to_settings.png" alt="whatever"/>

2. <img src="images/bg_change/edit_quick_css.png" alt="whatever"/>

3. <img src="images/bg_change/monaco_editor.png" alt="whatever"/>

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 **url** that you want to set.

See the below screenshots:

<img src="images/bg_change/bg_change.png" alt="whatever"/>

Now your favourite background image/gif should be applied.

**Note**: If you are using discord CDN, they expire after some time.
In such cases fetch a new link.

### 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's not already.
Most of the time you will be using [google fonts](https://fonts.google.com/).
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. <img src="images/font_change/font_change_1.png" alt="wq is loading"/>

2. <img src="images/font_change/font_change_2.png" alt="wq is loading"/>

3. <img src="images/font_change/font_change_3.png" alt="wq is loading"/>

4. <img src="images/font_change/font_change_4.png" alt="wq is loading"/>

5. <img src="images/font_change/font_change_5.png" alt="wq is loading"/>

6. <img src="images/font_change/font_change_6.png" alt="wq is loading"/>

* Only copy the highlighted part.
In your case, the link maybe different.

7. <img src="images/font_change/font_change_7.png" alt="wq is loading">

* 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. <img src="images/font_change/font_change_8.png" alt="wq is loading">

* 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 fonts should be applied.

#### Alternatively, if you want to use a downloaded font:

* Host the font somewhere. [GitHub](https://www.github.com) is a good place.

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

* After click on the font file and get the **RAW** link of that.

* Now just like in the previous step 7, we import the font, but this time
use the **RAW** GitHub link instead of Google font one.

```css
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap');
```

instead, it will be

```css
@import url('RAW LINK'); /* Replace `RAW LINK` with the GitHub raw url/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

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

**Note**: `--accentcolor` is for [rgb](https://rgbcolorpicker.com/) and `--accentcolor2` is
for [hex](https://colors-picker.com/hex-color-picker/).

### 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

**We recommend you to not go for that**

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 `--wallpaper` css variable
mentioned in [here](#how-to-change-the-backgroundbackground-image-of-chillax).

* 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 window manager of your OS also plays a vital role here.
So, the below css snippet may or may does 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 bit darker.
```css
.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 */
}
```

**Note**: *Linux users this may be a hit or miss due to infinite number of factors
(Too many DEs, WMs & Display Protocols).*
But using WM you can **natively add/force** translucence
at window level
(i.e. [hyprland](https://hyprland.org/) {**wayland warning
**}, [qtile](https://qtile.org/), [KWin](https://userbase.kde.org/KWin) etc.),
and you won't have to do any of the above-mentioned things.

### 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](#how-to-changeuse-another-fonts).

* Now use the below css snippet by @LofiTurtle:
* **Note:** If the below css does not work,
then please create an [Issue](https://github.com/warrayquipsome/Chillax/issues) or report in the [Support Discord Server](https://discord.gg/drfx6286kf).
```css
/* Reset groupchat name font */
.input__321f5 {
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 5 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](https://developer.mozilla.org/en-US/docs/Web/CSS/Comments) line `37` different/or which
says `/*@import url("https://warrayquipsome.github.io/Chillax/Addons/SimpleLessLag.css");*/`
See the below screenshots:

1. <img src="images/lag/lag_stuff_1.png" alt="whatever"/>

* Uncomment this line, and it should look something like the below
screenshot:

2. <img src="images/lag/lag_stuff_2.png" alt="whatever"/>

* This should make it a little less laggy.

Consequently, you can try out OpenAsar which part
of the [Vencord installer](https://github.com/Vencord/Installer/issues/11).
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 hover.
See the below screenshots:

1. <img src="images/addon_faqs/always_visible_member_list.png" alt="wq is loading"/>

* Now remove/comment out this line.

2. <img src="images/addon_faqs/commented_out.png" alt="wq is loading"/>

* Finally, you should have something like this:

3. <img src="images/addon_faqs/results.png" alt="wq is loading"/>

### 10. How to get back the old emojis?

This is also very similar to the previous [FAQ](#8-how-to-make-the-member-list-always-stay-visible-instead-of-on-hover).
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 ugly thing?

<div align="center">
<img src="images/Ugly_writing/ugly_writing_white_bg.png" alt="wq is loading">
</div>


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

* Now the use/paste below css snippet by @LofiTurtle at the very end:
* **Note:** If the below css does not work,
then please create an [Issue](https://github.com/warrayquipsome/Chillax/issues) or report in the [Support Discord Server](https://discord.gg/drfx6286kf).
```css
/* hide message in the sidebar */
.theme-dark .sidebar_ded4b5 .content__23cab:after {
color: rgba(255, 255, 255, 0) !important;
text-shadow: none !important;
}
```
* Now it should be a bit better.

<h1 align="center">Still Have Question(s)? 👇</h1>
<div align="center">
<a href="https://discord.gg/drfx6286kf" target="_blank">
<img src="https://dcbadge.vercel.app/api/server/DrfX6286kF?theme=discord-inverted" alt="wq"/>
</a>
</div>

<p align="center">Copyright &copy; 2024-present
<a href="https://github.com/warrayquipsome" target="_blank">Wq</a>
</p>
Binary file added Docs/images/Ugly_writing/ugly_writing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/addon_faqs/commented_out.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/addon_faqs/results.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/bg_change/bg_change.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/bg_change/edit_quick_css.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/bg_change/go_to_settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/bg_change/monaco_editor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/font_change/font_change_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/font_change/font_change_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/font_change/font_change_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/font_change/font_change_4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/font_change/font_change_5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/font_change/font_change_6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/font_change/font_change_7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/font_change/font_change_8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/lag/lag_stuff_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Docs/images/lag/lag_stuff_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
<a href="https://discord.gg/drfx6286kf" target="_blank">
<img src="https://dcbadge.vercel.app/api/server/DrfX6286kF?theme=discord-inverted" alt="wq"/>
</a>
<br/>
<a href="Docs/FAQs.md" target="_blank">
<img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=FAQ&message=CHILLAX VENCORD&colorA=333333&colorB=FB5454"
alt="whatever" style="border-radius: 5px"/>
</a>
</div>
<hr width="250px"/>
</div>
Expand All @@ -18,18 +23,19 @@
<summary>BetterDiscord</summary>

To download the theme in [Better Discord](https://betterdiscord.app/theme/Chillax) Site:

1. Press the download button.
2. Open your Discord and go User Settings > Themes > Open Themes Folder.
3. Drag the theme.css file you just downloaded into the theme folder that opened.
4. Go back to Discord and enable the theme and VOILA you did it.

To download the theme from GitHub:

1. Go to [chillax.theme.css](https://github.com/warrayquipsome/Chillax/blob/main/chillax.theme.css)
2. Press the copy raw contents button.
3. Edit the theme.css in your Discord.
4. Select everything and paste in the copied code.


And if you want a YouTube tutorial, go to this link: "https://youtu.be/U0tTENsBS4w"

</details>
Expand All @@ -38,6 +44,7 @@ And if you want a YouTube tutorial, go to this link: "https://youtu.be/U0tTENsBS
<summary>Vencord</summary>

To install and use the theme on [Vencord](https://vencord.dev/)

1. Go to [chillax.theme.css](https://github.com/warrayquipsome/Chillax/blob/main/chillax.theme.css)
2. Press the copy raw contents button.
3. Go to your Vencord themes tab.
Expand All @@ -51,7 +58,7 @@ To install and use the theme on [Vencord](https://vencord.dev/)
<details>
<summary>Raw GitHub Links</summary>

Raw links are also another option for using the theme and most client mod supports them,
Raw links are also another option for using the theme, and most client mod supports them,
but there are some inconveniences.
For instance, when the theme gets updated,
you will **lose all the customization** that you did on top of Chillax.
Expand Down Expand Up @@ -80,7 +87,7 @@ Please use them based on your own judgement._
# What do I do if the theme is outdated?

Well, it depends on how you installed the theme.
If you used the [Better Discord Site](https://betterdiscord.app/theme/Chillax) then you
If you used the [Better Discord Site](https://betterdiscord.app/theme/Chillax) then you
can go there and download the latest one and replace it with the old one.
For other methods [described above](#Installation) you can always get
the latest version of [Chillax from GitHub](https://github.com/warrayquipsome/Chillax).
Expand All @@ -91,7 +98,6 @@ For problems installing or using the theme,
join the support server [https://discord.gg/DrfX6286kF](https://discord.gg/DrfX6286kF)
and ask for help.


# Author

-[Wq](https://github.com/warrayquipsome)
Expand All @@ -102,7 +108,8 @@ and ask for help.
-[LofiTurtle](https://github.com/LofiTurtle)
-[Inmoresentum](https://github.com/Inmoresentum)

I just wanna quickly say thank you to everyone who helped, supported and used this theme. LUV ALL OF YOU!!
I just wanna quickly say thank you to everyone who helped, supported and used this theme.
LUV ALL OF YOU!!

&#160;

Expand Down

0 comments on commit fcf8c45

Please sign in to comment.