Skip to content

Discord Theme where you have to hover on pretty much anything (I just like the animations).

License

Notifications You must be signed in to change notification settings

kruoni/HoverForever

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord Theme to have the laggiest experience ever!

DMs Servers
Shows the DMs and Groups with the style applied Shows a random channel in a server with the style applied

Note

Previews are capped to around 16 fps, and the Demonstration theme made them even more laggier.

Warning

CODE CAN BE BROKEN: if needed, file an issue following the template.

I will try to optimize the theme when I have more time on my hand, however the code is currently a mess (I am not keen to do a full rewrite).

How To Install:

1- With QuickCSS (or any CSS editors from your client):

@import url("https://raw.githubusercontent.com/kruoni/HoverForever/refs/heads/main-theme/discord-theme.css");

2- With the raw link (for use with Vencord's online theme, or any other online import using raw links):

https://raw.githubusercontent.com/kruoni/HoverForever/refs/heads/main-theme/discord-theme.css

3- Save as a css file:

Save this link as a file and you'll get a .css file ready to be used: https://raw.githubusercontent.com/kruoni/HoverForever/refs/heads/main-theme/discord-theme.css

Customization

The :root variables are:

:root {
    --avatar-wrapper-background: /*YOUR OWN IMAGE*/;
    --avatar-wrapper-background-size: 216px;
    --app-background: transparent;
    /* change to var(--color-bg-dark2) for dark mode, or var(--color-bg-light2) for light mode, to remove transparency*/
    --color-bg-light1: #eee8df;
    --color-bg-light2: #dad5cf;
    --color-border-light: #242322;
    --color-panel-light: #dad5cfb0;
    --color-bg-dark1: #1a1a1d;
    --color-bg-dark2: #222228;
    --color-border-dark: #c0c0c0;
    --color-panel-dark: #222228b0;
    --color-accent-button: #6823ae65;
    --color-accent-button-hover: #460f7d80;
    --color-channel-icon: #6823ae;
}

Check below for more details.

You can change the Image that appears on the avatar Wrapper.

It respects Discord's banners' size (600x240px). I tried to make it fit the wrapper, so custom sizes might be jamky.

:root {
    --avatar-wrapper-background: /*YOUR OWN IMAGE*/;
    --avatar-wrapper-background-size: 216px;
}

image

Transparency is enabled by default (for Vencord, you have to enable "window transparency" in its settings, for other clients, I sadly do not know how to do so, so check for a setting mentioning transparency).

image

To disable the effect, just change the value in the :root part:

:root {
    /* change to #222228 for dark mode, or #dad5cf for light mode, to remove transparency*/
}