this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix discord

Ben C 78edc7af b9471d85

+3 -67
-63
res/vencord/settings/quickCss.css
··· 1 1 body { 2 2 /* zoom: 150% !important; /* I like big UI :) */ 3 3 } 4 - 5 - :root { 6 - /* amount of spacing and padding */ 7 - --spacing: 12px; 8 - /* radius of round corners */ 9 - --roundness: 16px; 10 - 11 - --hue-main: 130; 12 - --saturation: 70%; 13 - 14 - /* font, change to 'gg sans' for default discord font*/ 15 - --font: "gg sans"; 16 - 17 - /* color of green online dot, change to #23a55a for default green */ 18 - --online-indicator: var(--accent-2); 19 - 20 - /* color of links */ 21 - --accent-1: hsl(var(--hue-main), var(--saturation), 60%); 22 - /* color of unread dividers and some indicators */ 23 - --accent-2: hsl(var(--hue-main), var(--saturation), 48%); 24 - /* color of accented buttons */ 25 - --accent-3: hsl(var(--hue-main), var(--saturation), 42%); 26 - /* color of accented buttons when hovered */ 27 - --accent-4: hsl(var(--hue-main), var(--saturation), 36%); 28 - /* color of accented buttons when clicked */ 29 - --accent-5: hsl(var(--hue-main), var(--saturation), 30%); 30 - 31 - /* color of mentions and messages that mention you */ 32 - --mention: hsla(var(--hue-main), var(--saturation), 52%, 0.1); 33 - /* color of mentions and messages that mention you when hovered */ 34 - --mention-hover: hsla(var(--hue-main), var(--saturation), 52%, 0.05); 35 - 36 - /* color of bright text on colored buttons */ 37 - --text-1: hsl(220, 40%, 90%); 38 - /* color of headings and important text */ 39 - --text-2: hsl(220, 25%, 70%); 40 - /* color of normal text */ 41 - --text-3: hsl(220, 15%, 60%); 42 - /* color of icon buttons and channels */ 43 - --text-4: hsl(220, 15%, 40%); 44 - /* color of muted channels/chats and timestamps */ 45 - --text-5: hsl(220, 15%, 25%); 46 - 47 - /* color of dark buttons when clicked */ 48 - --bg-1: hsl(220, 15%, 20%); 49 - /* color of dark buttons */ 50 - --bg-2: hsl(220, 15%, 16%); 51 - /* color of spacing around panels and secondary elements */ 52 - --bg-3: hsl(220, 15%, 13%); 53 - /* main background color */ 54 - --bg-4: hsl(220, 15%, 10%); 55 - 56 - /* color of channels and icon buttons when hovered */ 57 - --hover: hsla(230, 20%, 40%, 0.1); 58 - /* color of channels and icon buttons when clicked or selected */ 59 - --active: hsla(220, 20%, 40%, 0.2); 60 - /* color of messages when hovered */ 61 - --message-hover: hsla(220, 0%, 0%, 0.1); 62 - 63 - /* top left icon */ 64 - --moon-icon: none; /* change to 'none' to hide moon icon */ 65 - --discord-icon: block; /* change to 'block' to show default discord icon */ 66 - }
+3 -4
roles/social+graphics/discord.nix
··· 9 9 vesktop 10 10 ]; 11 11 12 - home-manager.users.bean.home.file = { 13 - Vencord.source = "${inputs.self}/res/vencord"; 14 - "VencordDesktop/VencordDesktop/settings".source = "${inputs.self}/res/vencord/settings"; 15 - "VencordDesktop/VencordDesktop/themes".source = "${inputs.self}/res/vencord/themes"; 12 + home-manager.users.bean.xdg.configFile = { 13 + "vesktop/settings".source = "${inputs.self}/res/vencord/settings"; 14 + "vesktop/themes".source = "${inputs.self}/res/vencord/themes"; 16 15 }; 17 16 }