this repo has no description
0
fork

Configure Feed

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

Update discord theme

Tholp 19f45aff 42b72b31

+88 -7
+88 -7
content/res/dl/tholp.theme.css
··· 1 1 /** 2 2 * @name tholp5 3 - * @description Allows you to customize Discord's native Color Scheme. 3 + * @description Based on https://bdeditor.dev/theme/discordrecolor 4 4 * @author Tholp 5 - * @version 1.0.0 5 + * @version 1.1.0 6 6 */ 7 7 /* Uses https://bdeditor.dev/theme/discordrecolor but I've added or changed a handful of things to my liking, I use it with my fork of https://github.com/craftablescience/Discord-Square-Theme , (https://github.com/Tholp1/Discord-Square-Theme) */ 8 8 ··· 15 15 --accentcolor4: 12, 50, 00; 16 16 --linkcolor: 0,176,244; 17 17 --mentioncolor: 202,193,35; 18 - --textbrightest: 255,255,255; 19 - --textbrighter: 222,222,222; 18 + 20 19 --textbright: 185,185,185; 20 + --textbrighter: 222,222,222; 21 + --textbrightest: 255,255,255; 22 + 21 23 --textdark: 140,140,140; 22 24 --textdarker: 115,115,115; 23 25 --textdarkest: 80,80,80; 26 + --textdarkester: 40, 40, 40; 27 + 24 28 --font: Noto Sans; 29 + 25 30 --backgroundaccent: 202,193,35; 26 31 --backgroundprimary: 26,55,27; 27 32 --backgroundsecondary: 0,21,0; ··· 30 35 --backgroundfloating: 100,120, 0; 31 36 /* --backgroundfloating: 255, 0, 0; */ 32 37 --settingsicons: 1; 38 + 39 + --purple: rgb(150, 0, 255); 40 + --cyan: rgb(0, 255, 200); 33 41 34 42 } 35 43 ··· 92 100 } 93 101 94 102 /* VC status text previously unreadable */ 95 - .statusText__5cda9 103 + /*.statusText__5cda9 96 104 { 97 105 color: rgb(var(--textdark)); 98 - } 106 + }*/ 99 107 100 108 /* VC buttons (screenshare, activities, soundboard) */ 101 109 .button_e131a9 .buttonColor_e131a9, .button_e131a9.buttonColor_e131a9 ··· 111 119 112 120 /* profile status */ 113 121 .statusText_ab8609 { 114 - color: rgb(var(--textdarkest)); 122 + /* color: rgb(var(--textdarkest)); */ 123 + } 124 + 125 + .label__57f77 { 126 + color: rgb(var(--textdarkester)); 115 127 } 116 128 117 129 /* Scrollbar */ ··· 144 156 display: grid; 145 157 width: 10px !important; 146 158 } 159 + 160 + /* Sidebar on select messages */ 161 + 162 + .automodMessage__5126c:before, .ephemeral__5126c:before, .highlighted__5126c:before, .mentioned__5126c:before, .nitroMessage__5126c:before, .potioned__5126c:before, .replying__5126c:before, .cozy_c19a55.hasReply_c19a55::before { 163 + bottom: 0; 164 + content: ""; 165 + display: block; 166 + inset-inline-start: 0; 167 + pointer-events: none; 168 + position: absolute; 169 + top: 0; 170 + width: 8px; 171 + font-size: 12px; 172 + overflow: hidden; 173 + text-overflow: clip; 174 + align-content: center; 175 + font-weight: bold; 176 + } 177 + 178 + #app-mount .mentioned__5126c::before { 179 + content: "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"; 180 + } 181 + 182 + #app-mount .mentioned__5126c.hasReply_c19a55::before { 183 + content: ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"; 184 + background-color: var(--purple); 185 + } 186 + 187 + .replying__5126c:before { 188 + content: ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"; 189 + background-color: var(--cyan); 190 + } 191 + 192 + .cozy_c19a55.hasReply_c19a55::before { 193 + content: ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"; 194 + background-color: rgb(var(--accentcolor3)); 195 + } 196 + /* Bot tag */ 197 + 198 + .botTagRegular__82f07, .botTagRegular__82f07 { 199 + background: var(--background-brand); 200 + color: var(--black); 201 + } 202 + 203 + .botTagRegular__82f07 svg path { 204 + fill: var(--black); 205 + } 206 + 207 + /* Unread bar */ 208 + .bar__3b95d { 209 + align-items: center; 210 + border-radius: 12px; 211 + box-shadow: 0 2px 6px var(--opacity-black-24); 212 + color: var(--black); 213 + cursor: pointer; 214 + display: flex; 215 + font-family: var(--font-display); 216 + font-size: 12px; 217 + font-weight: var(--font-weight-semibold); 218 + height: 24px; 219 + justify-content: center; 220 + line-height: 16px; 221 + pointer-events: auto; 222 + position: relative; 223 + text-transform: uppercase; 224 + -webkit-app-region: no-drag; 225 + transition-delay: 0s; 226 + transition-property: visibility; 227 + }