8000 GitHub - kruoni/HoverForever: Discord theme where hovering is key.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

kruoni/HoverForever

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Discord Theme where hovering is key!

Activity Column User Profile Sidebar General Preview
2025-04-1518-00-29-ezgif com-cut userprofile preview 2025-04-1518-26-46-ezgif com-cut 2025-04-1518-38-15-ezgif com-optimize
Friend List Horizontal Friend List Vertical
image image

How To Install:

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

@import url("https://raw.githubusercontent.com/kruoni/HoverForever/refs/heads/visual-refresh/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/visual-refresh/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/visual-refresh/discord-theme.css

Customization

The :root variables are:

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

    /* SERVER AND CHANNEL SIDEBAR COLOR */
    --app-background: transparent;
    /* change to var(--color-bg-dark2) for dark mode, or var(--color-bg-light2) for light mode, to remove transparency */

    /* LIGHT MODE */
    --color-bg-light1: #eee8df;
    --color-bg-light2: #dad5cf;
    --color-border-light: #242322;
    --color-panel-light: #dad5cfb0;
    --text-color-light: #282724;
    --text-color-light-active: #363430;
    --background-accent-light: #dddae0;
    --background-modifier-hover-light: #d6c9e24d;
    --color-shadow-light: #9797a6;

    /* DARK MODE */
    --color-bg-dark1: #1a1a1d;
    --color-bg-dark2: #222228;
    --color-border-dark: #c0c0c0;
    --color-panel-dark: #222228b0;
    --text-color-dark: #eae4db;
    --text-color-dark-active: #d8cbbc;
    --background-accent-dark: #dddae0;
    --background-modifier-hover-dark: #d6c9e24d;
    --color-shadow-dark: #18151b;

    /* VARIOUS COLORS */
    --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 janky.

:root {
    --avatar-wrapper-background: /*YOUR IMAGE HERE*/;
    --avatar-wrapper-background-size: 270px;
}

image image

Transparency is enabled by default (Here's what the setting looks like using Vencord).

image

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

:root {
    /* SERVER AND CHANNEL SIDEBAR COLOR */
    --app-background: transparent;
    /* change to var(--color-bg-dark2) for dark mode, or var(--color-bg-light2) for light mode, to remove transparency */
}

Legcord users: use this snippet to have the correct titlebar

@import url(https://raw.githubusercontent.com/kruoni/HoverForever/refs/heads/visual-refresh/snippets/legcord-titlebar);

Drag by holding the window above the buttons.

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

0