├── AndroidPolice-Dark.user.css ├── GoogleBar-Dark.user.css ├── GoogleCalendar-Dark.user.css ├── GoogleContacts-Dark.user.css ├── GoogleHangouts-Dark.user.css ├── GooglePlayMusic-Dark.user.css ├── GoogleVoice-Dark.user.css ├── LICENSE.md ├── README.md ├── Screenshots ├── GPM_to_YTM-v2.gif ├── GPM_to_YTM.gif ├── GoogleBar.png ├── GoogleCalendar.jpeg ├── GoogleContacts.png ├── GoogleMusic.png ├── GoogleVoice.png ├── Hangouts.png ├── Swappa.png ├── YouTubeMusic.jpg └── on_platform_logo_light.svg ├── Swappa-Dark.user.css ├── YouTubeMusic-Light.user.css └── _config.yml /AndroidPolice-Dark.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name Android Police - Dark Style 3 | @namespace Devo7v 4 | @version 0.2.0 5 | @homepageURL https://github.com/Devo7v/UserCSS 6 | @supportURL https://github.com/Devo7v/UserCSS/issues 7 | @updateURL https://raw.githubusercontent.com/Devo7v/UserCSS/master/AndroidPolice-Dark.user.css 8 | @description Provides a dark theme for Android Police with customizable colors 9 | @license CC-BY-NC-SA-4.0 10 | @author Devo7v 11 | 12 | @preprocessor stylus 13 | 14 | @var color AndroidPolice-primary-background "Primary Background Color" #333333 15 | @var color AndroidPolice-dark-background "Dark Background Color" #111111 16 | @var color AndroidPolice-light-background "Light Background Color" #777777 17 | @var select SystemTheme "Apply Style Under System Theme"[ 18 | "Dark" , 19 | "Light", 20 | "Always" 21 | ] 22 | ==/UserStyle== */ 23 | 24 | @-moz-document domain("androidpolice.com"){ 25 | 26 | /*=======Set the colors based on system theme options=======*/ 27 | if SystemTheme == "Dark" { 28 | @media (prefers-color-scheme: dark) { 29 | :root{ 30 | --AndroidPolice-primary-background: AndroidPolice-primary-background; /*#333333*/ 31 | --AndroidPolice-dark-background: AndroidPolice-dark-background; /*#111111*/ 32 | --AndroidPolice-light-background: AndroidPolice-light-background; /*#777777*/ 33 | --AndroidPolice-gray-1: #656565; 34 | --AndroidPolice-gray-2: #292929; 35 | --AndroidPolice-primary-text: #ffffff; 36 | --AndroidPolice-secondary-text: #E6E6E6; 37 | --AndroidPolice-tertiary-text: #C7C7C7; 38 | } 39 | } 40 | 41 | @media (prefers-color-scheme: light) { 42 | :root{ 43 | --AndroidPolice-primary-background: #FFFFFF; 44 | --AndroidPolice-gray-1: #656565; 45 | } 46 | } 47 | } 48 | 49 | if SystemTheme == "Light" { 50 | @media (prefers-color-scheme: light) { 51 | :root{ 52 | --AndroidPolice-primary-background: AndroidPolice-primary-background; /*#333333*/ 53 | --AndroidPolice-dark-background: AndroidPolice-dark-background; /*#111111*/ 54 | --AndroidPolice-light-background: AndroidPolice-light-background; /*#777777*/ 55 | --AndroidPolice-gray-1: #656565; 56 | --AndroidPolice-gray-2: #292929; 57 | --AndroidPolice-primary-text: #ffffff; 58 | --AndroidPolice-secondary-text: #E6E6E6; 59 | --AndroidPolice-tertiary-text: #C7C7C7; 60 | } 61 | } 62 | 63 | @media (prefers-color-scheme: dark) { 64 | :root{ 65 | --AndroidPolice-primary-background: #FFFFFF; 66 | --AndroidPolice-gray-1: #656565; 67 | } 68 | } 69 | } 70 | 71 | if SystemTheme == "Always" { 72 | :root{ 73 | --AndroidPolice-primary-background: AndroidPolice-primary-background; /*#333333*/ 74 | --AndroidPolice-dark-background: AndroidPolice-dark-background; /*#111111*/ 75 | --AndroidPolice-light-background: AndroidPolice-light-background; /*#777777*/ 76 | --AndroidPolice-gray-1: #656565; 77 | --AndroidPolice-gray-2: #292929; 78 | --AndroidPolice-primary-text: #ffffff; 79 | --AndroidPolice-secondary-text: #E6E6E6; 80 | --AndroidPolice-tertiary-text: #C7C7C7; 81 | } 82 | } 83 | /*=======END Set the colors based on system theme option=======*/ 84 | 85 | .band.sub-nav{ 86 | height: 35px !important; 87 | box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); 88 | } 89 | 90 | .band.header{ 91 | background: var(--AndroidPolice-primary-background) !important; 92 | height: 30px !important; 93 | } 94 | 95 | /*h1.logo{ 96 | background: var(--AndroidPolice-primary-background) !important; 97 | }*/ 98 | 99 | .band.sub-nav{ 100 | background: var(--AndroidPolice-primary-background) !important; 101 | } 102 | 103 | .band.content.main{ 104 | background: var(--AndroidPolice-primary-background) !important; 105 | } 106 | 107 | .band.sub-nav{ 108 | border-bottom: 0px solid var(--AndroidPolice-gray-1) !important; 109 | } 110 | 111 | .ap-new-articles-btn{ 112 | background: #2B2B2B !important; 113 | } 114 | 115 | ul.sub-nav li a{ 116 | color: #A2A2A2 !important; 117 | } 118 | 119 | .post, .wp-pagenavi{ 120 | background: var(--AndroidPolice-primary-background) !important; 121 | border: 1px solid var(--AndroidPolice-light-background) !important; 122 | box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23)!important; 123 | } 124 | 125 | .post-header h2 a{ 126 | color: var(--AndroidPolice-primary-text) !important; 127 | } 128 | 129 | /*a{ 130 | color: #E6E6E6 !important; 131 | }*/ 132 | 133 | .post-date-time{ 134 | color: var(--AndroidPolice-tertiary-text) !important; 135 | } 136 | 137 | .share-box .shares{ 138 | color: var(--AndroidPolice-tertiary-text) !important; 139 | } 140 | 141 | ul.share-btns li{ 142 | border: 1px solid var(--AndroidPolice-gray-1) !important; 143 | } 144 | 145 | .categories{ 146 | border-top: 1px solid var(--AndroidPolice-gray-1) !important; 147 | } 148 | 149 | .categories li a{ 150 | border-top: 1px solid var(--AndroidPolice-gray-1) !important; 151 | } 152 | 153 | .categories ul.post-categories{ 154 | border-left: 1px solid var(--AndroidPolice-gray-1) !important; 155 | } 156 | 157 | .share-box .shares span.count{ 158 | border: 1px solid var(--AndroidPolice-gray-1) !important; 159 | } 160 | 161 | body{ 162 | color: var(--AndroidPolice-secondary-text) !important; 163 | } 164 | 165 | .wp-polls .Buttons, input[type="submit"], input[type="reset"], input[type="button"], a.read-more, a.primary-btn, .wp-polls-ans a{ 166 | background: var(--AndroidPolice-light-background) !important; 167 | } 168 | 169 | .banner-update{ 170 | background-color: var(--AndroidPolice-light-background) !important; 171 | border: 1px solid var(--AndroidPolice-gray-1) !important; 172 | } 173 | 174 | /*.post{ 175 | box-shadow: none !important; 176 | } 177 | 178 | .wp-pagenavi{ 179 | background: var(--AndroidPolice-primary-background) !important; 180 | border: 1px solid var(--AndroidPolice-gray-1) !important; 181 | box-shadow: none !important; 182 | }*/ 183 | 184 | .EmbeddedTweet{ 185 | background: var(--AndroidPolice-gray-2) !important; 186 | border: 1px solid var(--AndroidPolice-gray-1) !important; 187 | } 188 | 189 | .FollowButton{ 190 | background: #191919 !important; 191 | border: 1px solid var(--AndroidPolice-gray-1) !important; 192 | } 193 | 194 | .note-tip{ 195 | background-color: var(--AndroidPolice-gray-2) !important; 196 | border: 1px solid var(--AndroidPolice-gray-1) !important; 197 | } 198 | 199 | .note-tip .note-heading{ 200 | background-color: #848484 !important; 201 | } 202 | 203 | .categories li a{ 204 | border: 1px solid var(--AndroidPolice-gray-1) !important; 205 | } 206 | 207 | .note-warning{ 208 | background-color: var(--AndroidPolice-gray-2) !important; 209 | border: 1px solid var(--AndroidPolice-gray-1) !important; 210 | } 211 | 212 | .note-warning .note-heading{ 213 | background-color: #848484 !important; 214 | } 215 | 216 | strong{ 217 | color: var(--AndroidPolice-primary-text) !important; 218 | } 219 | 220 | layout .ob-widget-header{ 221 | color: #9E9E9E !important; 222 | } 223 | 224 | #comments{ 225 | background: var(--AndroidPolice-gray-2) !important; 226 | } 227 | 228 | .section-header{ 229 | border-bottom: 1px solid var(--AndroidPolice-gray-1) !important; 230 | } 231 | 232 | .primary .post-footer{ 233 | border: 1px solid var(--AndroidPolice-gray-1) !important; 234 | box-shadow: none !important; 235 | } 236 | 237 | .nav-primary > ul > li.active > a{ 238 | color: var(--AndroidPolice-tertiary-text)!important; 239 | } 240 | 241 | h3, strong, strong a{ 242 | color: var(--AndroidPolice-tertiary-text)!important; 243 | } 244 | 245 | .post-content .post-message p:last-child{ 246 | color: #D6D6D6 !important; 247 | } 248 | 249 | .textarea-wrapper{ 250 | background: var(--AndroidPolice-primary-background) !important; 251 | border: 2px solid var(--AndroidPolice-gray-1) !important; 252 | box-shadow: none !important; 253 | } 254 | 255 | .post .post-content tr:nth-child(2n) td{ 256 | background: var(--AndroidPolice-gray-2) !important; 257 | } 258 | 259 | .post .post-content th, .post .post-content td{ 260 | border: 1px solid var(--AndroidPolice-gray-1) !important; 261 | } 262 | 263 | .section-header{ 264 | background: var(--AndroidPolice-gray-2) !important; 265 | } 266 | 267 | blockquote.pr section.open{ 268 | background: var(--AndroidPolice-gray-2) !important; 269 | } 270 | 271 | blockquote.pr section{ 272 | border-left: 1px solid var(--AndroidPolice-gray-1) !important; 273 | border-right: 1px solid var(--AndroidPolice-gray-1) !important; 274 | } 275 | 276 | blockquote.pr section p{ 277 | color: var(--AndroidPolice-tertiary-text) !important; 278 | } 279 | 280 | blockquote.pr{ 281 | background: var(--AndroidPolice-gray-2) !important; 282 | } 283 | 284 | blockquote.pr footer{ 285 | border-left: 1px solid var(--AndroidPolice-gray-1) !important; 286 | border-right: 1px solid var(--AndroidPolice-gray-1) !important; 287 | border-bottom: 1px solid var(--AndroidPolice-gray-1) !important; 288 | } 289 | 290 | blockquote.pr .fade-text{ 291 | background: none !important; 292 | } 293 | 294 | .btn{ 295 | background: #6D6D6D !important; 296 | } 297 | 298 | .alert.realtime{ 299 | background: var(--AndroidPolice-primary-background) !important; 300 | } 301 | 302 | .tablepress .even td{ 303 | background: var(--AndroidPolice-primary-background) !important; 304 | } 305 | 306 | .note-note{ 307 | background: var(--AndroidPolice-gray-2) !important; 308 | border: 1px solid var(--AndroidPolice-gray-1) !important; 309 | } 310 | 311 | .note-note .note-heading{ 312 | background-color: #848484 !important; 313 | } 314 | 315 | .pb-app-widget-discover .pb-app-widget-table{ 316 | background: var(--AndroidPolice-gray-2) !important; 317 | } 318 | 319 | .pb-app-widget-discover .pb-wd-icon{ 320 | background: var(--AndroidPolice-gray-2) !important; 321 | } 322 | 323 | .pb-app-widget-discover .pb-wd-footer{ 324 | background: var(--AndroidPolice-gray-2) !important; 325 | } 326 | 327 | .pb-app-widget-discover{ 328 | border: 1px solid var(--AndroidPolice-gray-1) !important; 329 | } 330 | 331 | 332 | blockquote p{ 333 | text-shadow: 0px 0px 0 #191919; 334 | color: var(--AndroidPolice-secondary-text); 335 | font-style: normal; 336 | font-size: 15px; 337 | } 338 | 339 | .EmbeddedTweet-ancestor{ 340 | background: var(--AndroidPolice-dark-background) !important; 341 | border: 1px solid var(--AndroidPolice-light-background) !important; 342 | } 343 | 344 | 345 | .band.content.main .container.feature{ 346 | display: none; 347 | } 348 | 349 | .band.content.main .container .secondary.column{ 350 | display: none; 351 | } 352 | 353 | .band.footer{ 354 | display: none 355 | } 356 | 357 | .band.content.main .container .primary.column{ 358 | width: 100%; 359 | } 360 | 361 | .single-post-widget{ 362 | display: none 363 | } 364 | 365 | .article-nav{ 366 | display: none; 367 | } 368 | 369 | .bo-wrapper{ 370 | display: none; 371 | } 372 | 373 | .band .sixteen.columns{ 374 | height: 18px !important; 375 | } 376 | 377 | h1.logo{ 378 | position: relative !important; 379 | top: -20px !important; 380 | left: 20px !important; 381 | background-size: 50px auto !important; 382 | } 383 | 384 | img.img-hero{ 385 | display: block; 386 | margin: auto; 387 | width: 70%; 388 | box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); 389 | transition: all 0.3s cubic-bezier(.25, .1, .25, 1); 390 | border-radius: 4px; 391 | max-width: 512px; 392 | } 393 | 394 | img.img-hero:hover{ 395 | box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); 396 | max-width: 100%; 397 | } 398 | 399 | .post-content img{ 400 | max-width: 30%; 401 | align-content: center; 402 | transition: all 0.3s cubic-bezier(.25, .1, .25, 1); 403 | } 404 | 405 | .post-content img:hover{ 406 | max-width: 100%; 407 | } 408 | 409 | .post-hero img{ 410 | align-content: center; 411 | } 412 | } 413 | -------------------------------------------------------------------------------- /GoogleCalendar-Dark.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name Google Calendar - Dark Style 3 | @namespace Devo7v 4 | @version 0.2.10 5 | @homepageURL https://github.com/Devo7v/UserCSS 6 | @updateURL https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleCalendar-Dark.user.css 7 | @license CC-BY-NC-SA-4.0 8 | @author Devo7v 9 | 10 | @preprocessor stylus 11 | 12 | @var color gcal-accent-color "Accent Color" #1A73E8 13 | 14 | @var color gcal-primary-background-color "Primary Background Color" #111111 15 | @var color gcal-enhanced-background-color "Light Background Color" #333333 16 | @var color gcal-enhanced2-background-color "Light Background Color 2" #555555 17 | @var color gcal-dark-background-color "Dark Background Color" #000000 18 | 19 | @var color gcal-primary-text-color "Primary Text Color" #CCCCCC 20 | @var color gcal-enhanced-text-color "Light Text Color" #FFFFFF 21 | @var color gcal-dull-text-color "Dark Text Color" #999999 22 | 23 | @var color gcal-primary-line-color "Primary Line Color" #999999 24 | @var color gcal-enhanced-line-color "Light Line Color" #FFFFFF 25 | @var color gcal-dull-line-color "Dull Line Color" #555555 26 | @var color gcal-dark-line-color "Dark Line Color" #111111 27 | 28 | @var checkbox gcal-box-shadow-check "Show Shadow Behind Elements" 1 29 | 30 | @var select SystemTheme "Apply Style Under System Theme"[ 31 | "Dark" , 32 | "Light", 33 | "Always" 34 | ] 35 | ==/UserStyle== */ 36 | @-moz-document url-prefix("http://www.google.com/calendar/"), url-prefix("https://www.google.com/calendar/"), url-prefix("http://calendar.google.com/"), url-prefix("https://calendar.google.com/") { 37 | /*If you want to fully theme the Google Bar at the top, install the Google Bar - Dark Style (https://userstyles.org/styles/120351/google-bar-dark-style)*/ 38 | 39 | /*Comment out the following line if you want this style to apply regardless of System Dark Mode settings*/ 40 | :root { 41 | if gcal-box-shadow-check == 1 { 42 | --gcal-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23), 0 -10px 20px rgba(0, 0, 0, 0.19), 0 -6px 6px rgba(0, 0, 0, 0.23); 43 | } 44 | 45 | else if gcal-box-shadow-check == 0 { 46 | --gcal-box-shadow: none; 47 | } 48 | } 49 | 50 | /*=======Set the colors based on system theme options=======*/ 51 | if SystemTheme == "Dark" { 52 | @media (prefers-color-scheme: dark) { 53 | :root { 54 | --gcal-accent-color: gcal-accent-color; 55 | 56 | --gcal-primary-background-color: gcal-primary-background-color; 57 | --gcal-enhanced-background-color: gcal-enhanced-background-color; 58 | --gcal-enhanced2-background-color: gcal-enhanced2-background-color; 59 | --gcal-dark-background-color: gcal-dark-background-color; 60 | 61 | --gcal-primary-text-color: gcal-primary-text-color; 62 | --gcal-enhanced-text-color: gcal-enhanced-text-color; 63 | --gcal-dull-text-color: gcal-dull-text-color; 64 | 65 | --gcal-primary-line-color: gcal-primary-line-color; 66 | --gcal-enhanced-line-color: gcal-enhanced-line-color; 67 | --gcal-dull-line-color: gcal-dull-line-color; 68 | --gcal-dark-line-color: gcal-dark-line-color; 69 | 70 | /*Google Variables*/ 71 | --on-surface: var(--gcal-dull-text-color); 72 | } 73 | } 74 | @media (prefers-color-scheme: light) { 75 | :root { 76 | --gcal-accent-color: gcal-accent-color; 77 | 78 | --gcal-primary-background-color: #FFFFFF; 79 | --gcal-enhanced-background-color: #EEEEEE; 80 | --gcal-enhanced2-background-color: #DDDDDD; 81 | --gcal-primary-line-color: #dadce0; 82 | } 83 | } 84 | } 85 | if SystemTheme == "Light" { 86 | @media (prefers-color-scheme: light) { 87 | :root { 88 | --gcal-accent-color: gcal-accent-color; 89 | 90 | --gcal-primary-background-color: gcal-primary-background-color; 91 | --gcal-enhanced-background-color: gcal-enhanced-background-color; 92 | --gcal-enhanced2-background-color: gcal-enhanced2-background-color; 93 | --gcal-dark-background-color: gcal-dark-background-color; 94 | 95 | --gcal-primary-text-color: gcal-primary-text-color; 96 | --gcal-enhanced-text-color: gcal-enhanced-text-color; 97 | --gcal-dull-text-color: gcal-dull-text-color; 98 | 99 | --gcal-primary-line-color: gcal-primary-line-color; 100 | --gcal-enhanced-line-color: gcal-enhanced-line-color; 101 | --gcal-dull-line-color: gcal-dull-line-color; 102 | --gcal-dark-line-color: gcal-dark-line-color; 103 | 104 | /*Google Variables*/ 105 | --on-surface: var(--gcal-dull-text-color); 106 | } 107 | } 108 | @media (prefers-color-scheme: light) { 109 | :root { 110 | --gcal-accent-color: gcal-accent-color; 111 | 112 | --gcal-primary-background-color: #FFFFFF; 113 | --gcal-enhanced-background-color: #EEEEEE; 114 | --gcal-enhanced2-background-color: #DDDDDD; 115 | --gcal-primary-line-color: #dadce0; 116 | } 117 | } 118 | } 119 | if SystemTheme == "Always" { 120 | :root { 121 | --gcal-accent-color: gcal-accent-color; 122 | 123 | --gcal-primary-background-color: gcal-primary-background-color; 124 | --gcal-enhanced-background-color: gcal-enhanced-background-color; 125 | --gcal-enhanced2-background-color: gcal-enhanced2-background-color; 126 | --gcal-dark-background-color: gcal-dark-background-color; 127 | 128 | --gcal-primary-text-color: gcal-primary-text-color; 129 | --gcal-enhanced-text-color: gcal-enhanced-text-color; 130 | --gcal-dull-text-color: gcal-dull-text-color; 131 | 132 | --gcal-primary-line-color: gcal-primary-line-color; 133 | --gcal-enhanced-line-color: gcal-enhanced-line-color; 134 | --gcal-dull-line-color: gcal-dull-line-color; 135 | --gcal-dark-line-color: gcal-dark-line-color; 136 | 137 | /*Google Variables*/ 138 | --on-surface: var(--gcal-dull-text-color); 139 | } 140 | } 141 | 142 | /*Google Bar Color*/ 143 | #gb { 144 | background-color: var(--gcal-primary-background-color) !important; 145 | } 146 | 147 | /*Top border*/ 148 | .tNDBE { 149 | border-top: 1px solid var(--gcal-primary-line-color) !important; 150 | } 151 | 152 | /*========================Right-Side Apps Bar=====================*/ 153 | /*App bar background color*/ 154 | .Kk7lMc-DWWcKd-OomVLb-haAclf { 155 | background-color: var(--gcal-primary-background-color) !important; 156 | } 157 | 158 | div.gboEAb { 159 | border-left: 0px solid var(--gcal-primary-line-color) !important; 160 | } 161 | 162 | /*Background color when hovering over an app icon*/ 163 | .DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc { 164 | background-color: var(--gcal-enhanced2-background-color) !important; 165 | border-color: var(--gcal-enhanced2-background-color) !important; 166 | } 167 | 168 | /*+ symbol*/ 169 | #qJTzr > div:nth-child(3) { 170 | background-image: url(https://fonts.gstatic.com/s/i/googlematerialicons/add/v21/white-24dp/1x/gm_add_white_24dp.png) !important; 171 | } 172 | 173 | /*Background of the arrow at the bottom*/ 174 | .Kk7lMc-QWPxkf-LgbsSe .DWWcKd-OomVLb-LgbsSe-Bz112c-haAclf { 175 | background-color: var(--gcal-enhanced2-background-color) !important; 176 | } 177 | 178 | /*Arrow at the bottom*/ 179 | .DWWcKd-OomVLb-LgbsSe-Bz112c { 180 | fill: #CCCCCC !important; 181 | } 182 | 183 | /*.Kk7lMc-QWPxkf-LgbsSe-Bz112c{ 184 | background-image: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjIwcHgiIGhlaWdodD0iMjBweCIgdmlld0JveD0iMCAwIDI0IDI0IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAyNCAyNCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgZmlsbD0iI2ZmZiI+CiAgPHBhdGggZD0iTTguNTksMTYuNTlMMTMuMTcsMTJMOC41OSw3LjQxTDEwLDZsNiw2bC02LDZMOC41OSwxNi41OXoiLz4KICA8cGF0aCBmaWxsPSJub25lIiBkPSJNMCwwaDI0djI0SDBWMHoiLz4KPC9zdmc+') !important; 185 | } 186 | 187 | 188 | /*========================Google Bar========================*/ 189 | /*Background color*/ 190 | /*.gb_9d{ 191 | background-color: var(--gcal-primary-background-color) !important; 192 | } 193 | 194 | /*Slide out Main menu icon*/ 195 | /*.gb_yc svg{ 196 | color: blue !important; 197 | fill: blue !important; 198 | opacity: .54 !important; 199 | } 200 | 201 | /*Google Calendar Logo and text color*/ 202 | .gb_5d { 203 | color: var(--gcal-enhanced-text-color) !important; 204 | } 205 | 206 | /*Today Button*/ 207 | .Rj2Mlf { 208 | background-color: var(--gcal-enhanced2-background-color) !important; 209 | border: none !important; 210 | color: var(--gcal-enhanced-text-color) !important; 211 | } 212 | 213 | /*Previous/Next Month, Search, Settings icons*/ 214 | .m2yD4b { 215 | color: var(--gcal-primary-text-color) !important; 216 | fill: var(--gcal-primary-text-color) !important; 217 | } 218 | 219 | /*Month Title text color*/ 220 | .UyW9db { 221 | color: var(--gcal-enhanced-text-color) !important; 222 | } 223 | 224 | .L4yjSd { 225 | color: var(--gcal-dull-text-color) !important; 226 | } 227 | 228 | /*View (Month, Week, Day, etc) button*/ 229 | .HLI7qf { 230 | background-color: var(--gcal-enhanced2-background-color) !important; 231 | border: none !important; 232 | } 233 | 234 | .Cd9hpd .NlWrkb { 235 | color: var(--gcal-enhanced-text-color) !important; 236 | } 237 | 238 | .xmVoP { 239 | color: var(--gcal-enhanced-text-color) !important; 240 | opacity: 0.7 !important; 241 | } 242 | 243 | /*Switch between calendar and tasks*/ 244 | .xg1yEb.xg1yEb, .KSkz4b.KSkz4b { 245 | border-color: var(--gcal-primary-line-color) !important; 246 | } 247 | /*.VYBDae-Bz112c-LgbsSe :is(i, svg, img) { 248 | color: var(--gcal-primary-text-color) 249 | } 250 | 251 | /*Border between Google Bar and Calendar/Left slide out menu*/ 252 | .TOTjfb { 253 | border-top: 1px solid var(--gcal-primary-line-color) !important; 254 | } 255 | 256 | 257 | /*=======Month popup when clicking the Month Title=======*/ 258 | /*Background color*/ 259 | .q1j8lf, .J4VNSd { 260 | background-color: var(--gcal-enhanced-background-color) !important; 261 | height: 95% !important; 262 | } 263 | 264 | /*Month text color*/ 265 | .MSZkRb, .r4nke { 266 | color: var(--gcal-primary-text-color) !important; 267 | } 268 | 269 | /*Days of the week text color*/ 270 | .SoBqBf { 271 | color: var(--gcal-dull-text-color) !important; 272 | } 273 | 274 | /*Dates text color*/ 275 | .W0m3G { 276 | color: var(--gcal-dull-text-color) !important; 277 | } 278 | 279 | .IOneve .r4nke { 280 | background: var(--gcal-enhanced-background-color) !important; 281 | } 282 | 283 | .TUH0Sd .r4nke { 284 | background: var(--gcal-accent-color) !important; 285 | } 286 | 287 | .uGtG7d .r4nke { 288 | color: var(--gcal-dull-text-color) !important; 289 | } 290 | 291 | /*=======END=======*/ 292 | /*=======Search popup=======*/ 293 | /*input{ 294 | color: #CCCCCC !important; 295 | }*/ 296 | .gb_Ke.gb_1e { 297 | background: var(--gcal-enhanced-background-color) !important; 298 | } 299 | 300 | .gb_Tc { 301 | color: var(--gcal-dull-text-color) !important; 302 | } 303 | 304 | /*=======END=======*/ 305 | /*=======View (Month, Week, Day, etc.) popup=======*/ 306 | /*Background color*/ 307 | .JAPqpe { 308 | background: var(--gcal-enhanced-background-color) !important; 309 | } 310 | 311 | /*Text color*/ 312 | .z80M1, .mdj4H, .JAPzS, div.DN1TJ { 313 | color: var(--gcal-dull-text-color) !important; 314 | } 315 | 316 | /*Dividing line*/ 317 | .kCtYwe { 318 | border-top: 1px solid var(--gcal-primary-line-color) !important; 319 | margin: 7px 0 !important; 320 | } 321 | 322 | /*Check box color*/ 323 | .z80M1.N2RpBe::before { 324 | border-right: 2px solid var(--gcal-enhanced-line-color) !important; 325 | border-bottom: 2px solid var(--gcal-enhanced-line-color) !important; 326 | } 327 | 328 | /*Highlight color when hovering over*/ 329 | .z80M1.FwR7Pc { 330 | background-color: #555555 !important; 331 | } 332 | 333 | /*=======END=======*/ 334 | /*========================Left slide out menu========================*/ 335 | /*Background color*/ 336 | .QQYuzf { 337 | background-color: var(--gcal-primary-background-color) !important; 338 | } 339 | 340 | .qZvm2d-clz4Ic { 341 | border-bottom: 1px solid var(--gcal-primary-line-color) !important; 342 | } 343 | 344 | /*Border above mini calendar*/ 345 | .sBn5T::before, .sBn5T::after { 346 | display: none !important; 347 | } 348 | 349 | /*Fix for seach for people border*/ 350 | .qXIcZc .ULpymb.rFrNMe { 351 | border-radius: 0px !important; 352 | border: none !important; 353 | } 354 | 355 | /*My calendars and Other calendars hover*/ 356 | .kMp0We:hover, .kMp0We:focus { 357 | background-color: var(--gcal-enhanced-background-color) !important; 358 | } 359 | 360 | /*Calendars text color*/ 361 | .o8t45d ,.toUqff { 362 | color: var(--gcal-primary-text-color) !important; 363 | } 364 | 365 | /*Terms - Privacy*/ 366 | .erDb5d { 367 | color: #555555 !important; 368 | } 369 | 370 | 371 | /*=======Add a friend's calendar=======*/ 372 | /*Text color*/ 373 | .ULpymb .snByac { 374 | color: #777777 !important; 375 | } 376 | 377 | /*input text color*/ 378 | .whsOnd { 379 | color: #CCCCCC !important; 380 | } 381 | 382 | /*Background color*/ 383 | .IIB0tc .ULpymb { 384 | background-color: var(--gcal-enhanced-background-color) !important; 385 | border: 1px solid var(--gcal-dark-line-color) !important; 386 | } 387 | 388 | /*Popup background*/ 389 | .VOEIyf .jBmls { 390 | background-color: var(--gcal-enhanced-background-color) !important; 391 | } 392 | 393 | /*Hover over item*/ 394 | .oKubKe[aria-selected="true"] { 395 | background-color: var(--gcal-enhanced2-background-color) !important; 396 | } 397 | 398 | /*=======Calendars text=======*/ 399 | /*Title Text*/ 400 | .uQ1ixe .snByac { 401 | color: #777777 !important; 402 | } 403 | 404 | /*Carrot icon*/ 405 | .Dk9A5d { 406 | color: #777777 !important; 407 | } 408 | 409 | /*Calendars text*/ 410 | .NI2kfb { 411 | color: var(--gcal-dull-text-color) !important; 412 | } 413 | 414 | /*Unsubscribe & 3-dot icons*/ 415 | .rF3YF { 416 | color: var(--gcal-dull-text-color) !important; 417 | } 418 | 419 | /*3-dot popup text color*/ 420 | .QA0Szd-xl07Ob .uyYuVb { 421 | color: var(--gcal-dull-text-color) !important; 422 | } 423 | 424 | 425 | 426 | 427 | /*========================Main Calendar View========================*/ 428 | /*Hovering over items (events and dates)*/ 429 | .QGRmIf:hover, .KCIIIb:hover, .yzYBvd:hover { 430 | background-color: var(--gcal-dark-background-color) !important; 431 | } 432 | 433 | /*Dates text color*/ 434 | .yzYBvd { 435 | color: var(--gcal-dull-text-color) !important; 436 | } 437 | 438 | .yzYBvd:hover { 439 | color: var(--gcal-enhanced-text-color) !important; 440 | } 441 | 442 | /*All day event background ends*/ 443 | .QGRmIf { 444 | border-radius: 0px !important; 445 | /*2px is default, 9px is completely rounded*/ 446 | } 447 | .KF4T6b{ 448 | margin-left: 0px !important; 449 | } 450 | .Po94xd { 451 | padding-left: 0px !important; 452 | /*0px is default*/ 453 | padding-right: 1px !important; 454 | /*3px is default*/ 455 | } 456 | 457 | /*Add Event Button*/ 458 | .XiVK6d, .SaBhMc { 459 | background-color: /*var(--gcal-accent-color)*/ 460 | var(--gcal-enhanced2-background-color) !important; 461 | } 462 | 463 | /*+ Symbol*/ 464 | .Gw6Zhc { 465 | color: var(--gcal-enhanced-text-color) !important; 466 | } 467 | 468 | /*Location of "+" symbol*/ 469 | /*.Ip8zfc{ 470 | top: 20px !important; 471 | } 472 | 473 | /*Existing Event popup*/ 474 | .I7OXgf { 475 | background-color: var(--gcal-enhanced-background-color) !important; 476 | } 477 | 478 | /*========Add Event popup=======*/ 479 | /*Background*/ 480 | .JtukPc { 481 | background-color: var(--gcal-enhanced-background-color) !important; 482 | } 483 | 484 | .RDlrG { 485 | box-shadow: var(--gcal-box-shadow) !important; 486 | } 487 | 488 | /*Title and Time text*/ 489 | .ndJi5d, .whsOnd.zHQkBf, .YTCBlf { 490 | color: var(--gcal-primary-text-color) !important; 491 | } 492 | 493 | /*Event & Reminder text*/ 494 | .XSQHmd { 495 | color: var(--gcal-primary-text-color) !important; 496 | } 497 | 498 | /*Dash between start and end date/time*/ 499 | .NtP29 { 500 | color: var(--gcal-primary-text-color) !important; 501 | } 502 | 503 | /*All day text*/ 504 | .ETkhPe { 505 | color: var(--gcal-primary-text-color) !important; 506 | } 507 | 508 | /*Event & Reminder selected background*/ 509 | .qmv2fc.KKjvXb { 510 | background-color: var(--gcal-accent-color) !important; 511 | border: 1px solid var(--gcal-accent-color) !important; 512 | } 513 | 514 | /*Event & Reminder non-selected background*/ 515 | .qmv2fc.kaAt2 { 516 | border: 1px solid var(--gcal-accent-color) !important; 517 | } 518 | 519 | /*Date/Time background*/ 520 | .BvQsje { 521 | background-color: var(--gcal-enhanced-background-color) !important; 522 | } 523 | 524 | /*ADD TIME background*/ 525 | .CCRNT { 526 | background-color: var(--gcal-enhanced2-background-color) !important; 527 | } 528 | 529 | /*Time text in drop down list*/ 530 | .VKy0Ic { 531 | color: var(--gcal-primary-text-color) !important; 532 | } 533 | 534 | /*Icons*/ 535 | .rL6ose, .kap9Ye, .DPvwYc.NhjcAb { 536 | color: var(--gcal-primary-text-color) !important; 537 | opacity: 1.00 !important; 538 | } 539 | 540 | /*Going?*/ 541 | .NAFvr { 542 | background-color: var(--gcal-enhanced-background-color) !important; 543 | } 544 | 545 | .ZGVUP .snByac { 546 | color: var(--gcal-enhanced-text-color) !important; 547 | } 548 | 549 | .ZGVUP .snByac:hover { 550 | color: var(--gcal-dull-line-color) !important; 551 | } 552 | 553 | 554 | /*========================Year========================*/ 555 | /*Background*/ 556 | .lYYbjc { 557 | background-color: var(--gcal-primary-background-color) !important; 558 | } 559 | 560 | /*========================Month========================*/ 561 | /*Background*/ 562 | .RAaXne, .K2fuAf { 563 | background-color: var(--gcal-primary-background-color) !important; 564 | } 565 | 566 | /*Background for current day*/ 567 | .ef2wWc, .ecKr0 { 568 | background-color: var(--gcal-enhanced-background-color) !important; 569 | } 570 | 571 | /*Days of the Week*/ 572 | .EeuFAf { 573 | color: var(--gcal-primary-text-color) !important; 574 | } 575 | 576 | /*Current Day Date*/ 577 | .w48V4c.F262Ye { 578 | color: white !important; 579 | background-color: var(--gcal-accent-color) !important; 580 | border-radius: 0% !important; 581 | } 582 | 583 | /*Current Month Dates*/ 584 | .YK7obe, .o5s4T .w48V4c { 585 | color: var(--gcal-primary-text-color) !important; 586 | } 587 | 588 | /*Previous and Next Month Dates*/ 589 | /*.yzYBvd{ 590 | color: blue !important; 591 | opacity: 0.38 !important; 592 | } 593 | 594 | /*Current and Future Events text color*/ 595 | .jKgTF { 596 | color: var(--gcal-primary-text-color) !important; 597 | } 598 | 599 | /*Old Event text color*/ 600 | .UflSff .nHqeVd { 601 | color: rgb(125,125,125) !important; 602 | } 603 | 604 | /*Borders*/ 605 | .FLFkR { 606 | border-bottom: 1px solid var(--gcal-primary-line-color) !important; 607 | } 608 | 609 | .w6FdBf, .MGaLHf { 610 | border-right: 1px solid var(--gcal-primary-line-color) !important; 611 | } 612 | .RAaXne:not(.Wyo4Qe) { 613 | border-left: 1px solid var(--gcal-primary-line-color) !important; 614 | } 615 | 616 | /*========================Day========================*/ 617 | /*Background*/ 618 | .OCQPo, .Gk2izd, .GENA3c { 619 | background-color: var(--gcal-primary-background-color) !important; 620 | } 621 | 622 | /*Current Day/Date*/ 623 | .MmhHI.F262Ye { 624 | color: var(--gcal-primary-text-color) !important; 625 | } 626 | 627 | /*Calendar names*/ 628 | .cuBluc { 629 | color: var(--gcal-primary-text-color) !important; 630 | } 631 | 632 | /*Left side text*/ 633 | .pCoqfc, .MANBAf { 634 | color: var(--gcal-dull-text-color) !important; 635 | } 636 | 637 | /*Left side background*/ 638 | .R6TFwe, .sS0sZd { 639 | background-color: var(--gcal-primary-background-color) !important; 640 | } 641 | 642 | /*Borders*/ 643 | /*.H7IzGb,*/ 644 | .C5Jlgc { 645 | border-left: 1px solid var(--gcal-dull-line-color) !important; 646 | } 647 | 648 | .SU7tYb, .YvjgZe, .EdAri { 649 | border-right: 1px solid var(--gcal-dull-line-color) !important; 650 | } 651 | 652 | .G5v83e { 653 | border-top: 1px solid var(--gcal-dull-line-color) !important; 654 | } 655 | 656 | .mmsF1c::after/*, .Gk2izd*/ 657 | { 658 | border-bottom: 1px solid var(--gcal-dull-line-color) !important; 659 | } 660 | 661 | .J2aUD.T8M5bd .sx5BGe::before, .SGFqbe.T8M5bd .sx5BGe::before, .J2aUD.T8M5bd .qmFsL::after, .SGFqbe.T8M5bd .qmFsL::after { 662 | background-image: none !important; 663 | } 664 | 665 | body[data-viewfamily="EVENT"] .SGWAac/*, body[data-viewfamily="SCHEDULE"] .SGWAac, body[data-viewfamily="SEARCH"] .SGWAac */ 666 | { 667 | border-top: #dadce0 0px solid; 668 | } 669 | 670 | 671 | /*Current Time line*/ 672 | .WtFGnf-uDEFge, .H3tRZe { 673 | border-top: 2px solid var(--gcal-accent-color) !important; 674 | } 675 | 676 | .h11RHc { 677 | background: var(--gcal-accent-color) !important; 678 | } 679 | 680 | /*========================Week========================*/ 681 | /*Background*/ 682 | .pbeTDb, .gZ8fdb { 683 | background-color: var(--gcal-primary-background-color) !important; 684 | } 685 | 686 | /*Top border when scrolling down*/ 687 | .oXZ1yb.T8M5bd .lqYlwe::before, .oXZ1yb.T8M5bd .uEzZIb::after { 688 | background-image: none !important; 689 | box-shadow: inset 0 1px 1px 0 rgba(0,0,0,.14),inset 0 2px 1px -1px rgba(0,0,0,.12) !important; 690 | } 691 | 692 | /*Previous Days*/ 693 | .pCcXPe { 694 | color: var(--gcal-dull-text-color) !important; 695 | opacity: 0.7 !important; 696 | } 697 | 698 | /*Future Days*/ 699 | .N4XV7d { 700 | color: var(--gcal-enhanced-text-color) !important; 701 | opacity: 0.7 !important; 702 | } 703 | 704 | /*Borders*/ 705 | .EDDeke, .BiKU4b { 706 | border-right: 1px solid var(--gcal-primary-line-color) !important; 707 | } 708 | .sJ9Raf::after { 709 | border-bottom: 1px solid var(--gcal-primary-line-color) !important; 710 | } 711 | 712 | 713 | /*========================Schedule========================*/ 714 | /*Current Day/Date*/ 715 | .OmwDud.F262Ye { 716 | color: var(--gcal-accent-color) !important; 717 | } 718 | 719 | /*Day/Date Text*/ 720 | .OmwDud { 721 | color: var(--gcal-dull-text-color) !important; 722 | } 723 | 724 | /*Times text*/ 725 | .LLxvl.vXnnM, .snByac { 726 | color: var(--gcal-primary-text-color) !important; 727 | } 728 | 729 | /*Event text*/ 730 | .i06k6b.NlL62b { 731 | color: var(--gcal-primary-text-color) !important; 732 | } 733 | 734 | /*Location Text*/ 735 | .Z7IIl.JDkLTe { 736 | color: var(--gcal-dull-text-color) !important; 737 | } 738 | 739 | 740 | /*========================New Event Popup========================*/ 741 | /*Background*/ 742 | .p9lUpf { 743 | background: var(--gcal-primary-background-color) !important; 744 | } 745 | 746 | /*Save Button*/ 747 | .Y5sE8d { 748 | background: var(--gcal-accent-color) !important; 749 | color: var(--gcal-enhanced-text-color) !important; 750 | } 751 | 752 | /*Title and Date/Time Boxes*/ 753 | .Kb2sf, .TgcD5e { 754 | background-color: var(--gcal-enhanced-background-color) !important; 755 | border: 0px solid var(--gcal-dark-line-color) !important; 756 | } 757 | 758 | /*Add Title text color*/ 759 | .bojM1c, #xTiIn { 760 | color: var(--gcal-primary-text-color) !important; 761 | } 762 | 763 | /*Line below title*/ 764 | .WnqCuf { 765 | background-color: var(--gcal-dull-line-color) !important; 766 | } 767 | 768 | /*Date/Time text*/ 769 | #xStDaIn, #xStTiIn, #xEnTiIn, #xEnDaIn, .pQdjpb.shor6 .nXeosb{ 770 | color: var(--gcal-primary-text-color) !important; 771 | background: var(--gcal-enhanced2-background-color) !important; 772 | } 773 | 774 | /*"To" and "TIME ZONE" text*/ 775 | /*.YKfFKe, .RveJvd.snByac{ 776 | color: blue !important; 777 | } 778 | 779 | /*All day check box*/ 780 | .uHMk6b.fsHoPb { 781 | border: 7px solid var(--gcal-enhanced-background-color) !important; 782 | } 783 | 784 | /*[aria-checked="true"] > .rq8Mwb, [aria-checked="mixed"] > .rq8Mwb { 785 | background-color: var(--gcal-enhanced-background-color) !important; 786 | } 787 | 788 | /*Event Details, Find a Time, and Guest text*/ 789 | .DvZJme.KKjvXb .VZhFab { 790 | color: var(--gcal-accent-color) !important; 791 | } 792 | 793 | /*Other drop down boxes*/ 794 | .jgvuAb, .Dc8KZd, .As4fnb { 795 | background-color: var(--gcal-enhanced-background-color) !important; 796 | border: 1px solid var(--gcal-dark-line-color) !important; 797 | } 798 | 799 | /*Other drop down boxes text*/ 800 | .MocG8c { 801 | color: var(--gcal-primary-text-color) !important; 802 | } 803 | 804 | /*Carrot icons on drop down boxes*/ 805 | .e2CuFe.eU809d { 806 | border-width: 4px 4px 0 4px !important; 807 | border-color: var(--gcal-primary-text-color) transparent !important; 808 | } 809 | 810 | /*Drop down list*/ 811 | .ncFHed { 812 | background: var(--gcal-enhanced2-background-color) !important; 813 | } 814 | 815 | /*Background when hovering over an option*/ 816 | .ncFHed .MocG8c.KKjvXb { 817 | background-color: var(--gcal-enhanced-background-color) !important; 818 | } 819 | 820 | /*Add conferencing button*/ 821 | /*.HLI7qf .c7fp5b, .nCP5yc .VfPpkd-Jh9lGc { 822 | color: var(--gcal-primary-text-color) !important; 823 | background: var(--gcal-enhanced-background-color) !important; 824 | border: 1px solid var(--gcal-dark-line-color) !important; 825 | } 826 | 827 | /*Add conferencing */ 828 | .DPvwYc svg { 829 | fill: var(--gcal-primary-text-color) !important; 830 | } 831 | 832 | /*Calendar text*/ 833 | .jT5e9 { 834 | color: var(--gcal-primary-text-color) !important; 835 | } 836 | 837 | /*Event color box*/ 838 | .nHFrm.nHFrm { 839 | background-color: var(--gcal-enhanced-background-color) !important; 840 | } 841 | 842 | /*Carrot color*/ 843 | .cpB3me { 844 | color: var(--gcal-primary-text-color) 845 | } 846 | 847 | /*Selected tab*/ 848 | .ThdJC.KKjvXb { 849 | color: var(--gcal-accent-color) !important; 850 | } 851 | 852 | .w7qIhd, .WwvKTc { 853 | background-color: var(--gcal-accent-color) !important; 854 | } 855 | 856 | /*Non-selected tab*/ 857 | .ThdJC { 858 | color: var(--gcal-dull-text-color) !important; 859 | } 860 | 861 | /*Dividing lines*/ 862 | .mrslJ { 863 | border-bottom: 1px solid var(--gcal-dull-line-color) !important; 864 | } 865 | 866 | .Zlotdb + .FYEgid .XQINac { 867 | border-right: 1px solid var(--gcal-dull-line-color) !important; 868 | } 869 | 870 | .uJ4w1 { 871 | border-top: 1px solid var(--gcal-dull-line-color) !important; 872 | border-left: 1px solid var(--gcal-dull-line-color) !important; 873 | } 874 | 875 | /*Add guests input box*/ 876 | .ULpymb { 877 | background-color: var(--gcal-enhanced2-background-color) !important; 878 | } 879 | 880 | /*Guest permisions text*/ 881 | .hGcgEd, .GEhdLd { 882 | color: var(--gcal-primary-text-color) !important; 883 | } 884 | 885 | /*Question mark popup box*/ 886 | .EmURbc { 887 | background: var(--gcal-enhanced-background-color) !important; 888 | } 889 | 890 | /*Description Box*/ 891 | .DyOaYd { 892 | background-color: var(--gcal-enhanced-background-color) !important; 893 | border: 1px solid var(--gcal-dark-line-color) !important; 894 | } 895 | 896 | /*Description Box icons*/ 897 | .uOjlA, .qmMNRc { 898 | color: var(--gcal-primary-text-color) !important; 899 | opacity: 0.54 !important; 900 | } 901 | 902 | /*Description box dividing lines*/ 903 | .PqAscf { 904 | border-left: 1px solid var(--gcal-dull-line-color) !important; 905 | } 906 | 907 | /*Description box "Add description" text*/ 908 | .lR3h6d .snByac, .j3nyw { 909 | color: var(--gcal-primary-text-color) !important; 910 | } 911 | 912 | /*Icons*/ 913 | .tzcF6, .NMm5M { 914 | color: var(--gcal-primary-text-color) !important; 915 | } 916 | 917 | .aStPEd { 918 | color: var(--gcal-primary-text-color) !important; 919 | opacity: 0.54 !important; 920 | } 921 | 922 | /*Day and Date text on the Find A Time tab*/ 923 | .oPF3Ce { 924 | color: var(--gcal-primary-text-color) !important; 925 | } 926 | 927 | /*Calendar cannot be shown text*/ 928 | .P1LEuc.srd2n { 929 | color: var(--gcal-dull-text-color) !important; 930 | } 931 | 932 | /*=======Reschedule Event=======*/ 933 | /*Background color*/ 934 | .McOO2b { 935 | background-color: var(--gcal-enhanced2-background-color) !important 936 | } 937 | 938 | /*Dividing line*/ 939 | .YWILgc { 940 | border-top: solid 1px var(--gcal-primary-line-color) !important; 941 | } 942 | 943 | /*Text Color*/ 944 | .qwM8de, div.YWILgc:nth-child(1) > div:nth-child(2) > div:nth-child(1) > span:nth-child(3) > span:nth-child(1) { 945 | color: var(--gcal-primary-text-color) !important; 946 | } 947 | 948 | /*Button text colors*/ 949 | .Uu2hsf.auswjd { 950 | color: var(--gcal-accent-color) 951 | } 952 | 953 | /*=======Time Drop Down List=======*/ 954 | .VKy0Ic { 955 | background-color: var(--gcal-enhanced-background-color) !important; 956 | } 957 | 958 | .VKy0Ic[aria-selected="true"] { 959 | background-color: var(--gcal-enhanced2-background-color) !important; 960 | } 961 | 962 | /*=======Custom recurrence popup=======*/ 963 | /*Background*/ 964 | .g3VIld { 965 | background: var(--gcal-enhanced-background-color) !important; 966 | } 967 | 968 | /*Title text*/ 969 | .tOrNgd, .O9Lx9e { 970 | color: var(--gcal-primary-text-color) !important; 971 | } 972 | 973 | /*Other text*/ 974 | .PbnGhe, .SDtMeb { 975 | color: var(--gcal-primary-text-color) !important; 976 | } 977 | 978 | /*Entry text*/ 979 | .WpDZC.zHQkBf { 980 | color: var(--gcal-primary-text-color) !important; 981 | } 982 | 983 | /*occurrences background*/ 984 | .GY2CZb { 985 | background-color: var(--gcal-enhanced2-background-color) !important; 986 | } 987 | 988 | /*Cancel text*/ 989 | .O0WRkf { 990 | color: var(--gcal-primary-text-color) !important; 991 | } 992 | 993 | /*Done text*/ 994 | .HQ8yf { 995 | color: var(--gcal-accent-color) !important; 996 | } 997 | 998 | /*Radio buttons*/ 999 | .BHE4Yb .Id5V1, .BHE4Yb .nQOrEb { 1000 | border-color: var(--gcal-accent-color) !important; 1001 | } 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | /*========================Settings Page========================*/ 1008 | /*Left side background*/ 1009 | .xWId8e { 1010 | background-color: var(--gcal-primary-background-color) !important; 1011 | } 1012 | 1013 | /*Right side background color*/ 1014 | .a0xMze { 1015 | background: var(--gcal-primary-background-color) !important; 1016 | } 1017 | 1018 | /*Setting group boxes background*/ 1019 | .MDfQ7 { 1020 | background-color: var(--gcal-enhanced-background-color) !important; 1021 | box-shadow: var(--gcal-box-shadow) !important; 1022 | -moz-box-shadow: var(--gcal-box-shadow) !important; 1023 | } 1024 | 1025 | /*Setting group boxes title text*/ 1026 | .O1gyfd { 1027 | color: var(--gcal-primary-text-color) !important; 1028 | } 1029 | 1030 | /*Check boxes*/ 1031 | .uVccjd.wimXt { 1032 | border-color: var(--gcal-accent-color) !important; 1033 | } 1034 | 1035 | /*Check boxes text*/ 1036 | .VYaxId { 1037 | color: var(--gcal-primary-text-color) !important; 1038 | } 1039 | 1040 | /*Other text*/ 1041 | .oj6B2e { 1042 | color: var(--gcal-dull-text-color) !important; 1043 | } 1044 | 1045 | /*Time zones link*/ 1046 | .oj6B2e a { 1047 | color: var(--gcal-accent-color) !important; 1048 | } 1049 | 1050 | /*Add Time Zone text*/ 1051 | .uFmiXb.RDPZE .snByac { 1052 | color: var(--gcal-dull-text-color) !important; 1053 | } 1054 | 1055 | .uFmiXb .snByac { 1056 | color: var(--gcal-primary-text-color) !important; 1057 | } 1058 | 1059 | /*=======Add New Calendar description box=======*/ 1060 | /*Background*/ 1061 | .Qfwgwb { 1062 | background-color: var(--gcal-enhanced2-background-color) !important; 1063 | } 1064 | 1065 | /*Text*/ 1066 | .rkOI { 1067 | color: var(--gcal-primary-text-color) !important; 1068 | } 1069 | 1070 | .LV4Pme.tL9Q4c { 1071 | color: var(--gcal-primary-text-color) !important; 1072 | } 1073 | 1074 | /*Bottom Border*/ 1075 | .FaGtTe { 1076 | background-color: var(--gcal-accent-color) !important; 1077 | } 1078 | 1079 | /*=======Browse Calendars=======*/ 1080 | /*Calendars text*/ 1081 | .Ccr7Rb { 1082 | color: var(--gcal-primary-text-color) !important; 1083 | } 1084 | 1085 | /*=======Import/Export=======*/ 1086 | /*Import from computer box*/ 1087 | .Trypk { 1088 | background-color: var(--gcal-enhanced2-background-color) !important; 1089 | } 1090 | 1091 | /*Import from computer box icon and text*/ 1092 | .IZXV0b { 1093 | color: var(--gcal-dull-text-color) !important; 1094 | } 1095 | 1096 | /*Export calendars text*/ 1097 | .Z7IIl { 1098 | color: var(--gcal-primary-text-color) !important; 1099 | } 1100 | 1101 | /*=======Individual calendars settings=======*/ 1102 | /*Make available to public text*/ 1103 | .tMFP2b { 1104 | color: var(--gcal-primary-text-color) !important; 1105 | } 1106 | 1107 | /*before at text*/ 1108 | .zmOC3c { 1109 | color: var(--gcal-primary-text-color) !important; 1110 | } 1111 | 1112 | /*New events text*/ 1113 | .G9FGjf { 1114 | color: var(--gcal-primary-text-color) !important; 1115 | } 1116 | 1117 | /*Calendar ID text*/ 1118 | .fey5Hf { 1119 | color: var(--gcal-dull-text-color) 1120 | } 1121 | 1122 | .JunSsb { 1123 | color: var(--gcal-primary-text-color) !important; 1124 | } 1125 | 1126 | /*Integrate calendar description text*/ 1127 | .bsCOTd { 1128 | color: var(--gcal-dull-text-color) !important; 1129 | } 1130 | 1131 | /*Fix for drop down boxes*/ 1132 | /*.HLI7qf { 1133 | background-color: var(--gcal-enhanced-background-color) !important; 1134 | } 1135 | 1136 | /*=====================*/ 1137 | /*========================Fixes for the Calendar widget in Gmail========================*/ 1138 | /*Fix more backgrounds*/ 1139 | .dKHeGf { 1140 | background-color: var(--gcal-enhanced-background-color) !important; 1141 | } 1142 | 1143 | /*All day checkbox*/ 1144 | /*#xAlDaCbx { 1145 | border: 9px solid var(--gcal-accent-color) !important; 1146 | opacity: 0.54 !important; 1147 | } 1148 | 1149 | /*All day text*/ 1150 | .VfPpkd-I9GLp-yrriRe > label { 1151 | color: var(--gcal-dull-text-color) !important; 1152 | opacity: 0.54 !important; 1153 | } 1154 | 1155 | /*Event notes*/ 1156 | .AKhndf { 1157 | background-color: var(--gcal-enhanced2-background-color) !important; 1158 | } 1159 | 1160 | #hInySc0 { 1161 | color: var(--gcal-primary-text-color) !important; 1162 | } 1163 | } 1164 | 1165 | @-moz-document url-prefix("http://www.google.com/mail/"), url-prefix("https://www.google.com/mail/"), url-prefix("http://mail.google.com/"), url-prefix("https://mail.google.com/") { 1166 | 1167 | /*=============Formatting for the Calendar widget in Gmail=============*/ 1168 | /*Loading Screen Background*/ 1169 | .brC-brG, .brC-brG-Jz-bBA { 1170 | background-color: var(--gcal-primary-background-color) !important; 1171 | } 1172 | 1173 | /*Header Background*/ 1174 | .brC-brG-avC { 1175 | background-color: var(--gcal-primary-background-color) !important; 1176 | } 1177 | 1178 | /*Day and Date Text*/ 1179 | .brC-brG-a1P-bAa-a5b { 1180 | color: var(--gcal-accent-color) !important; 1181 | } 1182 | 1183 | /*Fix icons*/ 1184 | .brC-brG-avC-bta-atM .brC-brG-avC-bBo-JX { 1185 | fill: var(--gcal-primary-text-color) !important; 1186 | } 1187 | } 1188 | -------------------------------------------------------------------------------- /GoogleContacts-Dark.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name Google Contacts - Dark Style 3 | @namespace Devo7v 4 | @version 0.2.13 5 | @homepageURL https://github.com/Devo7v/UserCSS 6 | @supportURL https://github.com/Devo7v/UserCSS/issues 7 | @updateURL https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleContacts-Dark.user.css 8 | @description Provides a dark theme for Google Contacts with customizable colors 9 | @license CC-BY-NC-SA-4.0 10 | @author Devo7v 11 | 12 | @preprocessor stylus 13 | 14 | @var select gcontacts-accent-color "Accent Color" [ 15 | "Blue-from-Material-Version", 16 | "Blue-from-Preview-Version", 17 | "Red-from-Old-Version", 18 | "Custom" 19 | ] 20 | @var select gcontacts-corner "Round/Square Elements"[ 21 | "Round", 22 | "Square", 23 | "Squircle" 24 | ] 25 | @var color gcontacts-accent-color-custom "Custom Accent Color" #33B679 26 | @var color gcontacts-background-color "Primary Background Color" #111111 27 | @var color gcontacts-text-color "Text Color" #CCCCCC 28 | @var color gcontacts-light-text-color "Text Color" #FFFFFF 29 | 30 | @var select SystemTheme "Apply Style Under System Theme"[ 31 | "Dark" , 32 | "Light", 33 | "Always" 34 | ] 35 | ==/UserStyle== */ 36 | 37 | @-moz-document url-prefix("http://www.google.com/contacts/"), url-prefix("https://www.google.com/contacts/"), url-prefix("http://contacts.google.com/"), url-prefix("https://contacts.google.com/"){ 38 | 39 | /*#1A73E8*/ 40 | 41 | :root{ 42 | if gcontacts-accent-color == "Blue-from-Material-Version"{ 43 | --gcontacts-accent-color: #1A73E8; 44 | --gcontacts-accent-color-rotate: 0deg; /*HSL 214deg, 82% 51%*/ 45 | } 46 | else if gcontacts-accent-color == "Blue-from-Preview-Version"{ 47 | --gcontacts-accent-color: #2A56C6; 48 | --gcontacts-accent-color-rotate: 9deg; /*HSL 223deg, 65% 47%*/ 49 | } 50 | else if gcontacts-accent-color == "Red-from-Old-Version"{ 51 | --gcontacts-accent-color: #DD4B39; 52 | --gcontacts-accent-color-rotate: -207deg; /*HSL 7deg, 71% 55%*/ 53 | } 54 | else if gcontacts-accent-color == "Custom"{ 55 | --gcontacts-accent-color: gcontacts-accent-color-custom; 56 | } 57 | if gcontacts-corner == "Round"{ 58 | --gcontacts-corner-radius: 2.0rem; 59 | --gcontacts-contact-radius: 50%; 60 | } 61 | else if gcontacts-corner == "Square"{ 62 | --gcontacts-corner-radius: 0.0rem; 63 | --gcontacts-contact-radius: 0%; 64 | } 65 | else if gcontacts-corner == "Squircle"{ 66 | --gcontacts-corner-radius: 0.75rem; 67 | --gcontacts-contact-radius: 18.75%; 68 | } 69 | } 70 | 71 | /*=======Set the colors based on system theme options=======*/ 72 | if SystemTheme == "Dark" { 73 | @media (prefers-color-scheme: dark) { 74 | :root{ 75 | --gcontacts-background-color: gcontacts-background-color; /*#111111*/ 76 | --gcontacts-background-color-2: #222222; 77 | --gcontacts-background-color-3: #333333; 78 | --gcontacts-border-color: #555555; 79 | --gcontacts-text-color: #333333; 80 | --gcontacts-text-color: gcontacts-text-color; /*#CCCCCC*/ 81 | --gcontacts-light-text-color: gcontacts-light-text-color; /*#FFFFFF*/ 82 | --gcontacts-icon-color: #FFFFFF; 83 | } 84 | } 85 | @media (prefers-color-scheme: light) { 86 | :root{ 87 | --gcontacts-background-color: #FFFFFF; 88 | --gcontacts-background-color-2: #FFFFFF; 89 | --gcontacts-background-color-3: #EEEEEE; 90 | --gcontacts-border-color: #CCCCCC; 91 | --gcontacts-text-color: #333333; 92 | --gcontacts-light-text-color: rgba(0,0,0,0.6); 93 | --gcontacts-icon-color: rgba(0,0,0,0.6); 94 | } 95 | } 96 | } 97 | if SystemTheme == "Light" { 98 | @media (prefers-color-scheme: light) { 99 | :root{ 100 | --gcontacts-background-color: gcontacts-background-color; /*#111111*/ 101 | --gcontacts-background-color-2: #222222; 102 | --gcontacts-background-color-3: #333333; 103 | --gcontacts-border-color: #555555; 104 | --gcontacts-text-color: #333333; 105 | --gcontacts-text-color: gcontacts-text-color; /*#CCCCCC*/ 106 | --gcontacts-light-text-color: gcontacts-light-text-color; /*#FFFFFF*/ 107 | --gcontacts-icon-color: #FFFFFF; 108 | } 109 | } 110 | @media (prefers-color-scheme: dark) { 111 | :root{ 112 | --gcontacts-background-color: #FFFFFF; 113 | --gcontacts-background-color-2: #FFFFFF; 114 | --gcontacts-background-color-3: #EEEEEE; 115 | --gcontacts-border-color: #CCCCCC; 116 | --gcontacts-text-color: #333333; 117 | --gcontacts-light-text-color: rgba(0,0,0,0.6); 118 | --gcontacts-icon-color: rgba(0,0,0,0.6); 119 | } 120 | } 121 | } 122 | if SystemTheme == "Always" { 123 | :root{ 124 | --gcontacts-background-color: gcontacts-background-color; /*#111111*/ 125 | --gcontacts-background-color-2: #222222; 126 | --gcontacts-background-color-3: #333333; 127 | --gcontacts-border-color: #555555; 128 | --gcontacts-text-color: #333333; 129 | --gcontacts-text-color: gcontacts-text-color; /*#CCCCCC*/ 130 | --gcontacts-light-text-color: gcontacts-light-text-color; /*#FFFFFF*/ 131 | --gcontacts-icon-color: #FFFFFF; 132 | } 133 | } 134 | /*=======END Set the colors based on system theme option=======*/ 135 | 136 | /*Search Bar Background*/ 137 | .gb_Td{ 138 | background: none !important; 139 | background: rgba(255,255,255,0.16) !important; 140 | border: none !important; 141 | } 142 | 143 | /*Logo Text Color*/ 144 | .gb_bd{ 145 | color: var(--gcontacts-light-text-color) !important; 146 | } 147 | 148 | /*Coloring for svg icons in new Google Bar*/ 149 | .gb_Ia svg, .bJdxvf{ 150 | fill: var(--gcontacts-icon-color) !important; 151 | color: var(--gcontacts-icon-color) !important; 152 | } 153 | 154 | /*=====================Google Contacts PREVIEW VERSION=====================*/ 155 | /*Google Bar Background Color*/ 156 | header#gb, .gb_if{ 157 | background-color: var(--gcontacts-accent-color) !important; 158 | z-index: 3 !important; 159 | } 160 | 161 | /*Search Bar text color*/ 162 | .gb_rc svg, .Ax4B8, .yNVtPc{ 163 | color: var(--gcontacts-light-text-color) !important; 164 | } 165 | 166 | /*Main Background Color*/ 167 | body{ 168 | background: var(--gcontacts-background-color) !important; 169 | } 170 | 171 | /*General Text color*/ 172 | .jqJLq.jqJLq a{ 173 | color: var(--gcontacts-text-color) !important; 174 | } 175 | 176 | /*Link Color*/ 177 | a, .W7Nbnf, .mUIrbf-vQzf8d, .lZOZW { 178 | color: var(--gcontacts-accent-color) !important; 179 | } 180 | 181 | /*"Undo" text color in popup*/ 182 | .x95qze{ 183 | color: var(--gcontacts-accent-color) !important; 184 | } 185 | 186 | /*Drop shadow for Google Bar*/ 187 | .pGxpHc{ 188 | box-shadow: 0 0 0px #444444 !important; 189 | -moz-box-shadow: 0 0 0px #444444 !important; 190 | } 191 | 192 | /*New contact button coloring*/ 193 | /*.VfPpkd-wbSZ0b{ 194 | background-color: var(--gcontacts-accent-color) !important; 195 | color: blue !important; 196 | }*/ 197 | 198 | 199 | /*=========================Navigation Panel on Left=========================*/ 200 | /*Background color for navigation panel*/ 201 | .ANsHhf, .k831u, .tuQOVc{ 202 | background: var(--gcontacts-background-color) !important; 203 | } 204 | .esioQe{ 205 | display: none !important; 206 | } 207 | 208 | /*Create Contact button*/ 209 | .bgpk6e, .VfPpkd-nBWOSb{ 210 | background-color: var(--gcontacts-background-color-3) !important; 211 | color: var(--gcontacts-text-color) !important; 212 | border-radius: var(--gcontacts-corner-radius) !important; 213 | } 214 | 215 | /*Dividing Lines*/ 216 | .ANsHhf > hr{ 217 | border-bottom: 1px solid var(--gcontacts-border-color) !important; 218 | } 219 | .ANsHhf{ 220 | border-right: 1px solid var(--gcontacts-border-color) !important; 221 | } 222 | 223 | /*Selected navigation item background color*/ 224 | .ncJ6qe.jqJLq{ 225 | background: var(--gcontacts-background-color-3) !important; 226 | border-radius: var(--gcontacts-corner-radius) 227 | } 228 | .UXNHp.jqJLq{ 229 | background: none !important; 230 | } 231 | 232 | /*Selected navigation item icon color*/ 233 | .jqJLq.ncJ6qe.jqJLq a::before, .ncJ6qe .jlpDMe{ 234 | color: var(--gcontacts-accent-color) !important; 235 | } 236 | 237 | /*Selected navigation item text color*/ 238 | .ANsHhf{ 239 | color: #999999 !important; 240 | } 241 | 242 | /*Dropshadow when hovering over an item*/ 243 | .as7S4c{ 244 | box-shadow: 0px 0px 0px 0px #222222 !important; 245 | -moz-box-shadow: 0px 0px 0px 0px #222222 !important; 246 | } 247 | 248 | /*Background color when hovering over item*/ 249 | .jqJLq:hover{ 250 | background: var(--gcontacts-background-color-3) !important; 251 | border-radius: var(--gcontacts-corner-radius) !important; 252 | } 253 | 254 | /*Background behind edit and trash icons*/ 255 | .as7S4c{ 256 | background: none !important; 257 | } 258 | 259 | /*Edit and Trash Icon color*/ 260 | .jaWtS{ 261 | color: var(--gcontacts-text-color) !important; 262 | } 263 | 264 | 265 | 266 | /*=========================Contacts Panel=========================*/ 267 | /*Background color*/ 268 | .zYQnTe, .zQTmif, .dFPtBe{ 269 | background: var(--gcontacts-background-color) !important; 270 | border-bottom: 1px solid var(--gcontacts-border-color) !important; 271 | } 272 | 273 | /*Name text color*/ 274 | body{ 275 | color: var(--gcontacts-text-color) !important; 276 | } 277 | 278 | /*=====Change column order popup=====*/ 279 | /*Column Backgrounds*/ 280 | .jrhe5d{ 281 | background: var(--gcontacts-background-color-3) !important; 282 | } 283 | 284 | /*Dropdown carrots*/ 285 | .e2CuFe{ 286 | border-color: rgba(255,255,255,0.4) transparent !important; 287 | } 288 | 289 | /*Dividing Lines*/ 290 | .OdyOpe{ 291 | border-bottom: 1px solid #666666 !important; 292 | } 293 | 294 | /*Grabs icons*/ 295 | .zvAEaf .NSy2Hd{ 296 | fill: var(--gcontacts-accent-color) !important; 297 | color: var(--gcontacts-light-text-color) !important; 298 | } 299 | 300 | /*Dropdown hover*/ 301 | .ncFHed .MocG8c.KKjvXb{ 302 | background-color: #222222 !important; 303 | } 304 | .BPX1ed.QIMKlc, .BPX1ed.QIMKlc .OdyOpe{ 305 | background: var(--gcontacts-accent-color) !important; 306 | } 307 | /*=====END=====*/ 308 | 309 | /*Star Icon Color*/ 310 | .WbfHMb::after, .QriV0::after{ 311 | color: var(--gcontacts-accent-color) !important; 312 | } 313 | 314 | /*Letter color*/ 315 | .yIoRze{ 316 | color: var(--gcontacts-accent-color) !important; 317 | } 318 | 319 | /*Active row*/ 320 | .psZcEd{ 321 | border-left-color: var(--gcontacts-accent-color) !important; 322 | } 323 | 324 | /*Selected contact check box*/ 325 | .XF89yf .v2jl3d::after{ 326 | color: var(--gcontacts-accent-color) !important; 327 | } 328 | 329 | /*Letter Popup when scrolling*/ 330 | .wGD2Db{ 331 | background: var(--gcontacts-background-color-3) !important; 332 | color: var(--gcontacts-accent-color) !important; 333 | } 334 | 335 | /*Recent Interactions Background*/ 336 | .Usd1Ac { 337 | background-color: var(--gcontacts-background-color-2) !important 338 | } 339 | 340 | /*Recent Interactions Text*/ 341 | .Ko4REb { 342 | color: var(--gcontacts-text-color) !important; 343 | } 344 | .qfAujf { 345 | color: var(--gcontacts-accent-color) !important; 346 | } 347 | 348 | 349 | /*=======Popup when adding new contact=======*/ 350 | /*Header Background Color*/ 351 | .PO4Br, .fbkutb, .FGgXHc{ 352 | background-color: var(--gcontacts-background-color) !important; 353 | } 354 | 355 | /*Background*/ 356 | .e2txse, .PWsB5e{ 357 | background-color: var(--gcontacts-background-color) !important; 358 | } 359 | 360 | /*Contact name text color*/ 361 | .y4sJgd, .qhML4e, .m8VNgd{ 362 | color: #999999 !important; 363 | } 364 | 365 | /*Random Icons*/ 366 | .uQXbGe{ 367 | background-color: var(--gcontacts-background-color) !important; 368 | } 369 | 370 | /*Contact Detials*/ 371 | .dlP5vf, .Yz8cvd{ 372 | background-color: var(--gcontacts-background-color-2) !important; 373 | } 374 | 375 | /*Cancel, Save, and More text*/ 376 | .HQ8yf, .ksBjEc:not(:disabled){ 377 | color: var(--gcontacts-accent-color) !important; 378 | } 379 | /*Cancel, Save, and More text disabled*/ 380 | .VfPpkd-LgbsSe:disabled{ 381 | color: #999999 !important; 382 | } 383 | 384 | /*Underline color*/ 385 | .i9lrp, .z0oSpf{ 386 | background: #444444 !important; 387 | } 388 | 389 | /*Underline color active*/ 390 | .OabDMe, .Bfurwb{ 391 | background: var(--gcontacts-accent-color) !important; 392 | } 393 | 394 | /*Plus Symbol*/ 395 | .xCGRM::after{ 396 | color: var(--gcontacts-accent-color) !important; 397 | } 398 | 399 | /*Input default labels*/ 400 | .ndJi5d, /*Name, Email, Phone, etc.*/ 401 | .AxOyFc, /*Phoenetic last, first, nickname, file as*/ 402 | .F1pOBe /*Address & Notes*/ 403 | { 404 | color: #666666 !important; 405 | } 406 | 407 | 408 | /*=========================Bar at the top when selecting multiple contacts=========================*/ 409 | /*Background Color*/ 410 | .H1IxX{ 411 | background: var(--gcontacts-background-color-3) !important; 412 | box-shadow: 0 0 0px #666666 !important; 413 | -moz-box-shadow: 0 0 0px #666666 !important; 414 | } 415 | 416 | /*Back text*/ 417 | .Lc2y0d{ 418 | color: #999999 !important; 419 | } 420 | 421 | /*Check box*/ 422 | .Sc6s5c[aria-checked="true"]::after{ 423 | color: var(--gcontacts-accent-color) !important; 424 | fill: var(--gcontacts-accent-color) !important; 425 | } 426 | 427 | /*Selected text color*/ 428 | .fmkX5d{ 429 | color: var(--gcontacts-accent-color) !important; 430 | } 431 | 432 | 433 | 434 | 435 | /*=========================Contact Editor=========================*/ 436 | /*Popup background color*/ 437 | .ONOzI{ 438 | background: var(--gcontacts-background-color-2) !important; 439 | } 440 | 441 | /*Popup Shape*/ 442 | .g3VIld.g3VIld{ 443 | border-radius: var(--gcontacts-corner-radius) !important; 444 | } 445 | 446 | /*Drop shadow for Picture*/ 447 | .YpExIf, .HfynVe, .LrbNhc { 448 | /*box-shadow: 0 0 1px 1px #666666 !important;*/ 449 | border-radius: var(--gcontacts-contact-radius) !important; 450 | } 451 | 452 | /*Drop shadow for Header*/ 453 | .KEUMte.qRW1Fc{ 454 | box-shadow: 0 0 1px #666666 !important; 455 | -moz-box-shadow: 0 0 1px #666666 !important; 456 | } 457 | 458 | /*Star Icon Color*/ 459 | .OQ5Ifc::after{ 460 | color: var(--gcontacts-accent-color) !important; 461 | } 462 | 463 | /*Labels background color*/ 464 | .SsJGwb{ 465 | background: var(--gcontacts-accent-color) !important; 466 | color: var(--gcontacts-text-color) !important; 467 | border: 1px solid var(--gcontacts-text-color) !important; 468 | border-radius: var(--gcontacts-corner-radius) !important; 469 | } 470 | .GxALzd .VfPpkd-TfeOUb{ 471 | color: var(--gcontacts-text-color) !important; 472 | } 473 | 474 | /*Background color for contact information*/ 475 | .aHij0b-WsjYwc { 476 | background-color: var(--gcontacts-background-color-2) !important; 477 | } 478 | 479 | /*Popup background color*/ 480 | .VOEIyf .jBmls{ 481 | background: var(--gcontacts-background-color-3) !important; 482 | } 483 | 484 | /*Popup text color*/ 485 | .oKubKe, .VfPpkd-fmcmS-wGMbrd{ 486 | color: #999999 !important; 487 | } 488 | 489 | /*Popup hover background color*/ 490 | .oKubKe[aria-selected="true"]{ 491 | background: #444444 !important; 492 | } 493 | 494 | /*Fix for Drop down items in contact editor*/ 495 | .MocG8c{ 496 | color: #666666 !important; 497 | } 498 | .Il8Mgb{ 499 | background-color: #555555 !important; 500 | } 501 | .ncFHed{ 502 | background: var(--gcontacts-background-color-3) !important; 503 | } 504 | 505 | /*Link text color*/ 506 | .uvYBpc:nth-child(n+1) > div:nth-child(n+1) > div:nth-child(2) > a:nth-child(1){ 507 | color: var(--gcontacts-accent-color) !important; 508 | } 509 | 510 | /*Interactions background color*/ 511 | .rJ3fif.eejsDc{ 512 | background: var(--gcontacts-background-color-2) !important; 513 | color: #999999 !important; 514 | } 515 | 516 | /*Interactions text color*/ 517 | /*.mks9mf, .qV7Uuf::after,*/ .zgXFde, .JrNrqb{ 518 | color: #999999 !important; 519 | } 520 | 521 | /*Interactions hover background color*/ 522 | /*.qV7Uuf:hover,*/ .zgXFde:hover{ 523 | background: #555555 !important; 524 | } 525 | 526 | /*3-Dot Popup Menu Background Color*/ 527 | .JPdR6b{ 528 | background: var(--gcontacts-background-color-2) !important; 529 | } 530 | 531 | /*3-Dot Popup Menu Text Color*/ 532 | .z80M1{ 533 | color: #999999 !important; 534 | } 535 | 536 | /*3-Dot Popup Menu Divider Color*/ 537 | .kCtYwe{ 538 | border-top: 1px solid #666666 !important; 539 | } 540 | 541 | /*3-Dot Popup Menu Change labels Text Color*/ 542 | .Plw26d{ 543 | color: #666666 !important; 544 | } 545 | 546 | /*3-Dot Popup Menu Hover*/ 547 | .z80M1.FwR7Pc{ 548 | background: var(--gcontacts-background-color-3) !important; 549 | } 550 | 551 | /*3-Dot Popup Menu Check Marks*/ 552 | .z80M1.N2RpBe::before{ 553 | border-right: 2px solid #999999 !important; 554 | border-bottom: 2px solid #999999 !important; 555 | } 556 | 557 | /*=================Edit Contact=================*/ 558 | /*Text Color*/ 559 | .zH791 .zHQkBf, .zH791 .ZAGvjd, .zH791 .tL9Q4c, .whsOnd{ 560 | color: var(--gcontacts-text-color) !important; 561 | } 562 | 563 | /*Add a note text color*/ 564 | .fqp6hd{ 565 | color: #666666 !important; 566 | } 567 | 568 | /*X Icon*/ 569 | .xnv7ld{ 570 | color: #999999 !important; 571 | } 572 | 573 | /*Icons*/ 574 | .NSy2Hd{ 575 | fill: var(--gcontacts-icon-color) !important; 576 | } 577 | 578 | /*Show More at the bottom*/ 579 | .JvO9cb { 580 | background-color: var(--gcontacts-background-color) !important; 581 | } 582 | 583 | 584 | 585 | /*=======Birthday Cards on the right=======*/ 586 | /*Background color*/ 587 | .Y2gHof, .qm87J { 588 | background-color: var(--gcontacts-background-color-2) !important; 589 | } 590 | 591 | /*Border*/ 592 | .a8pf4d { 593 | border: 1px solid var(--gcontacts-border-color) !important; 594 | border-radius: var(--gcontacts-corner-radius) !important; 595 | box-shadow: 0 0 3px 3px rgba(0,0,0,0.23) !important; 596 | } 597 | 598 | /*Text Color*/ 599 | .VmVyed, .GryHKe, .WMnqtb { 600 | color: var(--gcontacts-text-color) !important; 601 | } 602 | 603 | /*Icon coloring*/ 604 | .jU7kdd { 605 | filter: hue-rotate(var(--gcontacts-accent-color-rotate)) !important; 606 | -webkit-filter: hue-rotate(var(--gcontacts-accent-color-rotate)) !important; 607 | -o-filter: hue-rotate(var(--gcontacts-accent-color-rotate)) !important; 608 | -ms-filter: hue-rotate(var(--gcontacts-accent-color-rotate)) !important; 609 | } 610 | 611 | /*=======Settings Popup=======*/ 612 | /*Background color*/ 613 | .R6Lfte, .PbnGhe, .XfpsVe{ 614 | background: var(--gcontacts-background-color-3) !important; 615 | } 616 | 617 | /*Language change link*/ 618 | div.UloUpf:nth-child(1) > div:nth-child(2) > a:nth-child(1){ 619 | color: var(--gcontacts-accent-color) !important; 620 | } 621 | 622 | /*Radio button color*/ 623 | .t5nRo, .wEIpqb.nQOrEb{ 624 | border-color: var(--gcontacts-accent-color) !important; 625 | } 626 | 627 | /*Country dropdown background color*/ 628 | #YzgRqe{ 629 | background: var(--gcontacts-background-color-3) !important; 630 | color: #999999 !important; 631 | } 632 | 633 | /*=================Import Contacts Popup=================*/ 634 | /*Import Icon Background Color*/ 635 | .XQKzUb{ 636 | background: var(--gcontacts-accent-color) !important; 637 | border: 20px solid var(--gcontacts-accent-color) !important; 638 | } 639 | 640 | /*Primary Text*/ 641 | .DT1qW{ 642 | color: #EEEEEE !important; 643 | } 644 | 645 | /*Secondary Text*/ 646 | .QhzM0e{ 647 | color: #999999 !important; 648 | } 649 | 650 | /*Border between rows*/ 651 | .GAVekb{ 652 | border-bottom: 1px solid #555555 !important; 653 | } 654 | 655 | /*Cancel text*/ 656 | .FIXCJb{ 657 | color: var(--gcontacts-accent-color) !important; 658 | } 659 | 660 | /*Contacts Source Icon*/ 661 | .Iw6aOe, /*AOL*/ 662 | .ovXs9b, /*Other email provider*/ 663 | .hlboDc /*CSV or vCard file*/ 664 | { 665 | filter: invert(100%) !important; 666 | -webkit-filter: invert(100%) !important; 667 | -o-filter: invert(100%) !important; 668 | -ms-filter: invert(100%) !important; 669 | } 670 | 671 | /*Text Color on Merge & Fix page*/ 672 | .H0zpEd { 673 | color: var(--gcontacts-text-color) !important; 674 | } 675 | 676 | } 677 | -------------------------------------------------------------------------------- /GoogleHangouts-Dark.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name Google Hangouts - Dark Style 3 | @namespace Devo7v 4 | @version 0.2.2 5 | @homepageURL https://github.com/Devo7v/UserCSS 6 | @supportURL https://github.com/Devo7v/UserCSS/issues 7 | @updateURL https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleHangouts-Dark.user.css 8 | @description Adds dark theming to Google Hangouts 9 | @license CC-BY-NC-SA-4.0 10 | @author Devo7v 11 | 12 | @preprocessor stylus 13 | 14 | @var color ghangouts-primary-background-color "Background Color" #333333 15 | @var checkbox ghangouts-accent-color-custom "Use Custom Accent Color" 0 16 | @var color ghangouts-accent-color "Accent Color" #53A93F 17 | 18 | @var select SystemTheme "Apply Style Under System Theme"[ 19 | "Dark" , 20 | "Light", 21 | "Always" 22 | ] 23 | ==/UserStyle== */ 24 | 25 | 26 | @-moz-document url-prefix("http://www.google.com/hangouts/"), url-prefix("https://www.google.com/hangouts/"), url-prefix("http://hangouts.google.com/"), url-prefix("https://hangouts.google.com/") { 27 | 28 | :root { 29 | /*Original Hangouts accent color #53A93F*/ 30 | if ghangouts-accent-color-custom == 0 { 31 | --ghangouts-accent-color: #0F9D58; 32 | } 33 | else if ghangouts-accent-color-custom == 1 { 34 | --ghangouts-accent-color: ghangouts-accent-color; 35 | } 36 | } 37 | 38 | /*=======Set the colors based on system theme options=======*/ 39 | if SystemTheme == "Dark" { 40 | @media (prefers-color-scheme: dark) { 41 | :root{ 42 | --ghangouts-primary-background-color: ghangouts-primary-background-color; 43 | --ghangouts-dark-background-color: #222222; 44 | --ghangouts-dark2-background-color: #333333; 45 | --ghangouts-light-background-color: #444444; 46 | --ghangouts-border-color: #777777; 47 | --ghangouts-primary-text-color: #999999; 48 | --ghangouts-secondary-text-color: #CCCCCC; 49 | --ghangouts-icon-color: rgba(255, 255, 255, 0.87); 50 | --ghangouts-invert-icons: invert(100%); 51 | } 52 | } 53 | @media (prefers-color-scheme: light) { 54 | :root{ 55 | /*--ghangouts-primary-background-color: #111111;/**/ 56 | --ghangouts-dark-background-color: #FFFFFF;/**/ 57 | --ghangouts-dark2-background-color: var(--ghangouts-accent-color);/**/ 58 | --ghangouts-light-background-color: #DDDDDD;/**/ 59 | /*--ghangouts-border-color: #777777;/**/ 60 | --ghangouts-primary-text-color: #111111;/**/ 61 | --ghangouts-secondary-text-color: #333333;/**/ 62 | } 63 | } 64 | } 65 | if SystemTheme == "Light" { 66 | @media (prefers-color-scheme: light) { 67 | :root{ 68 | --ghangouts-primary-background-color: ghangouts-primary-background-color; 69 | --ghangouts-dark-background-color: #222222; 70 | --ghangouts-dark2-background-color: #333333; 71 | --ghangouts-light-background-color: #444444; 72 | --ghangouts-border-color: #777777; 73 | --ghangouts-primary-text-color: #999999; 74 | --ghangouts-secondary-text-color: #CCCCCC; 75 | --ghangouts-icon-color: rgba(255, 255, 255, 0.87); 76 | --ghangouts-invert-icons: invert(100%); 77 | } 78 | } 79 | @media (prefers-color-scheme: dark) { 80 | :root{ 81 | /*--ghangouts-primary-background-color: #111111;/**/ 82 | --ghangouts-dark-background-color: #FFFFFF;/**/ 83 | --ghangouts-dark2-background-color: var(--ghangouts-accent-color);/**/ 84 | --ghangouts-light-background-color: #DDDDDD;/**/ 85 | /*--ghangouts-border-color: #777777;/**/ 86 | --ghangouts-primary-text-color: #111111;/**/ 87 | --ghangouts-secondary-text-color: #333333;/**/ 88 | } 89 | } 90 | } 91 | if SystemTheme == "Always" { 92 | :root{ 93 | --ghangouts-primary-background-color: ghangouts-primary-background-color; 94 | --ghangouts-dark-background-color: #222222; 95 | --ghangouts-dark2-background-color: #333333; 96 | --ghangouts-light-background-color: #444444; 97 | --ghangouts-border-color: #777777; 98 | --ghangouts-primary-text-color: #999999; 99 | --ghangouts-secondary-text-color: #CCCCCC; 100 | --ghangouts-icon-color: rgba(255, 255, 255, 0.87); 101 | --ghangouts-invert-icons: invert(100%); 102 | } 103 | } 104 | 105 | /*Loading Background*/ 106 | .g-Ue-kc{ 107 | background-color: var(--ghangouts-primary-background-color) !important; 108 | } 109 | 110 | /*=========================Left slide out menu=========================*/ 111 | /*Left slide out menu background*/ 112 | .JPdR6b{ 113 | background: var(--ghangouts-dark-background-color) !important; 114 | } 115 | 116 | /*Text color*/ 117 | .g-Ue-we, .z80M1{ 118 | color: var(--ghangouts-primary-text-color) !important; 119 | } 120 | 121 | /*Selected and Hovered Over item*/ 122 | .bdXzDb .z80M1.FwR7Pc, .bdXzDb .z80M1.skHzY{ 123 | background: var(--ghangouts-light-background-color) !important; 124 | } 125 | .bdXzDb .skHzY .jO7h3c, .bdXzDb .skHzY .pTh3n{ 126 | color: var(--ghangouts-accent-color) !important; 127 | fill: var(--ghangouts-accent-color) !important; 128 | } 129 | 130 | /*Invert the color of dark icons*/ 131 | .bdXzDb .RY89vd .pTh3n{ 132 | fill: var(--ghangouts-icon-color) !important; 133 | } 134 | 135 | /*Contacts icon*/ 136 | /*Conversations icon*/ 137 | /*Phone Calls icon*/ 138 | /*Invites icon*/ 139 | /*Android icon*/ 140 | /*iOS icon*/ 141 | /*Chrome icon*/ 142 | /*Hangouts Dialer icon*/ 143 | /*Settings icon*/ 144 | /*Help & Feedback icon*//*{ 145 | filter: invert(100%) !important; 146 | -webkit-filter: invert(100%) !important;*/ 147 | /*-moz-filter: invert(100%) !important;*/ 148 | /*-o-filter: invert(100%) !important; 149 | -ms-filter: invert(100%) !important; 150 | }*/ 151 | 152 | 153 | 154 | /*=========================Main Message List=========================*/ 155 | /*Message list background*/ 156 | .Yo, .aOY59, .x1bKod{ 157 | background: var(--ghangouts-primary-background-color) !important; 158 | border-bottom: none !important; 159 | } 160 | 161 | /*New conversation icon*/ 162 | .wK9ELb{ 163 | background-color: var(--ghangouts-accent-color) !important; 164 | } 165 | 166 | /*Message List Text*/ 167 | .lPNGt, .qCUW5d{ 168 | color: var(--ghangouts-primary-text-color) !important; 169 | } 170 | 171 | /*Message list border*/ 172 | .gsl0xd{ 173 | border-left: 0px solid var(--ghangouts-light-background-color) !important; 174 | } 175 | 176 | /*Hovering over items in message list*/ 177 | .KgaIJb:hover, .Bb:hover{ 178 | background-color: var(--ghangouts-light-background-color) !important; 179 | } 180 | 181 | /*Conversations background color*/ 182 | .Bb, .Ahnnze{ 183 | background: var(--ghangouts-primary-background-color) !important; 184 | border-bottom: 0px solid var(--ghangouts-light-background-color) !important; 185 | } 186 | 187 | /*Input text boxes*/ 188 | input, textarea{ 189 | background: var(--ghangouts-light-background-color) !important; 190 | color: var(--ghangouts-primary-text-color) !important; 191 | } 192 | 193 | /*Text color for Message list*/ 194 | .ik, .ng, /*span,*/ .rNeXgf, .ZmcSxe, .FzSsbb, .VqBtHf, .pghO0c{ 195 | color: var(--ghangouts-secondary-text-color) !important; 196 | } 197 | 198 | /*Search results text color*/ 199 | .cj{ 200 | color: var(--ghangouts-secondary-text-color) !important; 201 | } 202 | 203 | /*Search results hover background color*/ 204 | .eh.c-P-p{ 205 | background: var(--ghangouts-dark2-background-color) !important; 206 | } 207 | 208 | /*Search results section background color*/ 209 | .Wkchmf{ 210 | background: var(--ghangouts-dark2-background-color) !important; 211 | border: none !important; 212 | } 213 | 214 | /*Search results section text color*/ 215 | .Wkchmf .kp{ 216 | color: var(--ghangouts-secondary-text-color) !important; 217 | } 218 | 219 | /*"Invite" text color*/ 220 | .wWbu5e{ 221 | color: #0288D1 !important; 222 | } 223 | 224 | /*=======Chat Window=======*/ 225 | /*Header background color*/ 226 | .Ik{ 227 | background-color: var(--ghangouts-dark2-background-color) !important; 228 | } 229 | 230 | /*New Chat Header background color*/ 231 | .uB{ 232 | background-color: var(--ghangouts-accent-color) !important; 233 | } 234 | /*Header buttons background color*/ 235 | .EV{ 236 | background: var(--ghangouts-dark2-background-color) !important; 237 | } 238 | 239 | /*Header text color*/ 240 | .Ob2Lud, .O1vsec, .xP{ 241 | color: var(--ghangouts-secondary-text-color) !important; 242 | } 243 | 244 | /*Message window background*/ 245 | .iN{ 246 | background-color: var(--ghangouts-dark-background-color) !important; 247 | } 248 | 249 | /*======Chat Bubble Colors======*/ 250 | /*Sent by User*/ 251 | .pj .KRQuhe{ 252 | background-color: var(--ghangouts-light-background-color) !important; 253 | border-radius: 0px !important; /*Fully rounded chat bubbles have a radius of 15px*/ 254 | border-top-right-radius: 0px !important; 255 | } 256 | .pj .jHldnd{ 257 | border: 8px solid var(--ghangouts-light-background-color) !important; 258 | } 259 | /*Text Color*/ 260 | .pj .JL{ 261 | color: var(--ghangouts-secondary-text-color) !important; 262 | } 263 | .pj .JL a{ 264 | color: #BBBBBB !important; 265 | } 266 | 267 | /*Sent by others*/ 268 | .Sn .KRQuhe{ 269 | background-color: var(--ghangouts-accent-color) !important; 270 | border-radius: 0px !important; /*Fully rounded chat bubbles have a radius of 15px*/ 271 | border-top-left-radius: 0px !important; 272 | } 273 | .Sn .jHldnd{ 274 | border: 8px solid var(--ghangouts-accent-color) !important; 275 | } 276 | /*Text Color*/ 277 | .Sn .JL{ 278 | color: #FFFFFF !important; 279 | } 280 | .Sn .JL a/*Hyperlink*/{ 281 | color: #EEEEEE !important; 282 | } 283 | 284 | /*Chat text color*/ 285 | .TsiDff, .mopgBe{ 286 | color: #DDDDDD !important; 287 | } 288 | 289 | /*Message contact name, timestamp, status color*/ 290 | .sV, .TlvAYc, .bI{ 291 | color: var(--ghangouts-primary-text-color) !important; 292 | } 293 | 294 | /*Message text input box background and layering*/ 295 | .My{ 296 | background-color: var(--ghangouts-dark2-background-color) !important; 297 | } 298 | 299 | /*Remove text entry box borders*/ 300 | .My{ 301 | border-style: none !important; 302 | } 303 | 304 | /*Invert the color of dark icons*/ 305 | .Px, /*Carat icon*/ 306 | .kL, button.ydob5c, /*Bell icon*/ 307 | .zDiulc, /*Phone icon*/ 308 | .rYvKwe, /*Phone icon*/ 309 | .wkIdsc, /*Hangouts icon*/ 310 | .vR, /*Gear icon*/ 311 | .Cyynpc, /*Emoji icon*/ 312 | .yq6mRd, /*Picture icon*/ 313 | .Tnn80c, /*Pencil icon*/ 314 | .HxMcae, /*SMS icon*/ 315 | .Xv, /*Video camera icon*/ 316 | .-xc .pTh3n, /*Video camera icon 2*/ 317 | .PK, /*People icon*/ 318 | .BboKFb, /*Bell icon*/ 319 | .OK, /*Add person icon*/ 320 | .Tikynd, /*Back arrow icon*/ 321 | .mnIV2e /*Check box in chat options*/ 322 | /*.Dkouue /*SMS icon*/{ 323 | filter: var(--ghangouts-invert-icons) !important; 324 | -webkit-filter: var(--ghangouts-invert-icons) !important; 325 | /*-moz-filter: var(--ghangouts-invert-icons) !important;*/ 326 | -o-filter: var(--ghangouts-invert-icons) !important; 327 | -ms-filter: var(--ghangouts-invert-icons) !important; 328 | } 329 | 330 | /*Background color for Phone icon next to chat bubble picture*/ 331 | .iF9mle{ 332 | background: none !important; 333 | } 334 | 335 | 336 | /*Play button icon for listening to voicemails*/ 337 | .Ip00db{ 338 | background-image: url("https://ssl.gstatic.com/chat/babble/sprites/common-517bca7f07a37c64c3263a1411e266a5.png") !important; 339 | background-position: -722px -51px !important; 340 | filter: invert(90%) !important; 341 | -webkit-filter: invert(90%) !important; 342 | /*-moz-filter: invert(90%) !important;*/ 343 | -o-filter: invert(90%) !important; 344 | -ms-filter: invert(90%) !important; 345 | } 346 | 347 | /*=======Emoji Popup=======*/ 348 | /*Emoji stickers background*/ 349 | .HM, .bC7CXb, .IaF29d, .vf6xyf, .Hy.Th96Ob, .gr4xCd{ 350 | background-color: var(--ghangouts-dark-background-color) !important; 351 | } 352 | 353 | /*Emoji types background*/ 354 | .Hy.Th96Ob .IM{ 355 | background-color: var(--ghangouts-dark-background-color) !important; 356 | border: 1px solid var(--ghangouts-border-color) !important; 357 | } 358 | 359 | /*invert emoji types images*/ 360 | .rE, .Gy{ 361 | filter: invert(100%) !important; 362 | -webkit-filter: invert(100%) !important; 363 | } 364 | 365 | /*Remove emoji stickers border*/ 366 | .bC7CXb{ 367 | border: none !important; 368 | } 369 | 370 | 371 | /*=======Draw an Image!=======*/ 372 | 373 | 374 | /*=======Settings=======*/ 375 | /*Window background color*/ 376 | .uJ .Ih{ 377 | background: var(--ghangouts-dark-background-color) !important; 378 | } 379 | 380 | /*Icons*/ 381 | .z-b-G{ 382 | background: var(--ghangouts-light-background-color) !important; 383 | border: none !important; 384 | color: var(--ghangouts-primary-text-color) !important; 385 | } 386 | 387 | /*Text color*/ 388 | .uJ .Ih, .ahRshd .wxPY, .NLK4Q{ 389 | color: var(--ghangouts-primary-text-color) !important; 390 | text-shadow: none !important; 391 | } 392 | 393 | /*Buttons area background color*/ 394 | .RU, .IRDqje, .Su{ 395 | background: var(--ghangouts-dark2-background-color) !important; 396 | border: none !important; 397 | } 398 | 399 | /*=======People in conversation=======*/ 400 | /*Background color*/ 401 | .zS{ 402 | background: var(--ghangouts-dark-background-color) !important; 403 | } 404 | .rI{ 405 | border: none !important; 406 | } 407 | 408 | } 409 | -------------------------------------------------------------------------------- /GoogleVoice-Dark.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name Google Voice - Dark Style 3 | @namespace Devo7v 4 | @version 0.2.49 5 | @homepageURL https://github.com/Devo7v/UserCSS 6 | @supportURL https://github.com/Devo7v/UserCSS/issues 7 | @updateURL https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleVoice-Dark.user.css 8 | @description Provides a dark theme for Google Voice 9 | @license CC-BY-NC-SA-4.0 10 | @author Devo7v 11 | 12 | @preprocessor stylus 13 | 14 | @var select gvoice-accent "Accent Color"[ 15 | "New", 16 | "Old", 17 | "Custom" 18 | ] 19 | @var color gvoice-accent-custom "Custom Accent Color" #33B679 20 | @var select gvoice-corner "Round/Square Elements"[ 21 | "Round", 22 | "Square", 23 | "Squircle" 24 | ] 25 | 26 | @var color gvoice-background-color "Primary Background Color" #111111 27 | @var color gvoice-background-color-light "Light Background Color" #333333 28 | @var color gvoice-background-color-dark "Dark Background Color" #222222 29 | 30 | @var color gvoice-text-color "Primary Text Color" #AAAAAA 31 | 32 | @var select SystemTheme "Apply Style Under System Theme"[ 33 | "Dark" , 34 | "Light", 35 | "Always" 36 | ] 37 | ==/UserStyle== */ 38 | 39 | 40 | @-moz-document url-prefix("http://voice.google.com/"), url-prefix("https://voice.google.com/") { 41 | 42 | :root{ 43 | if gvoice-accent == "New"{ 44 | --gvoice-accent-color: #00897B; 45 | --gvoice-accent-color-rotate: 0deg; 46 | } 47 | else if gvoice-accent == "Old"{ 48 | --gvoice-accent-color: #4284F4; 49 | --gvoice-accent-color-rotate: 93.37318deg; 50 | } 51 | else if gvoice-accent == "Custom"{ 52 | --gvoice-accent-color: gvoice-accent-custom; 53 | --gvoice-accent-color-rotate: 0deg; 54 | } 55 | if gvoice-corner == "Round"{ 56 | --gvoice-corner-radius: 2.0rem; 57 | } 58 | else if gvoice-corner == "Square"{ 59 | --gvoice-corner-radius: 0.0rem; 60 | } 61 | else if gvoice-corner == "Squircle"{ 62 | --gvoice-corner-radius: 0.75rem; 63 | } 64 | } 65 | 66 | /*=======Set the colors based on system theme options=======*/ 67 | if SystemTheme == "Dark" { 68 | @media (prefers-color-scheme: dark) { 69 | :root{ 70 | --gvoice-background-color: gvoice-background-color; 71 | --gvoice-background-color-light: gvoice-background-color-light; 72 | --gvoice-background-color-dark: gvoice-background-color-dark; 73 | --gvoice-text-color: gvoice-text-color; 74 | --gvoice-border-color: #444444; 75 | --gvoice-white: #FFFFFF; 76 | } 77 | } 78 | @media (prefers-color-scheme: light) { 79 | :root{ 80 | --gvoice-background-color: #fff; 81 | --gvoice-background-color-light: #f1f3f4; 82 | --gvoice-background-color-dark: #dadce0; 83 | --gvoice-text-color: #202124; 84 | --gvoice-border-color: #dadce0; 85 | --gvoice-white: #202124; 86 | } 87 | } 88 | } 89 | if SystemTheme == "Light" { 90 | @media (prefers-color-scheme: light) { 91 | :root{ 92 | --gvoice-background-color: gvoice-background-color; 93 | --gvoice-background-color-light: gvoice-background-color-light; 94 | --gvoice-background-color-dark: gvoice-background-color-dark; 95 | --gvoice-text-color: gvoice-text-color; 96 | --gvoice-border-color: #444444; 97 | --gvoice-white: #FFFFFF; 98 | } 99 | } 100 | @media (prefers-color-scheme: dark) { 101 | :root{ 102 | --gvoice-background-color: #fff; 103 | --gvoice-background-color-light: #f1f3f4; 104 | --gvoice-background-color-dark: #dadce0; 105 | --gvoice-text-color: #202124; 106 | --gvoice-border-color: #dadce0; 107 | --gvoice-white: #202124; 108 | } 109 | } 110 | } 111 | if SystemTheme == "Always" { 112 | :root{ 113 | --gvoice-background-color: gvoice-background-color; 114 | --gvoice-background-color-light: gvoice-background-color-light; 115 | --gvoice-background-color-dark: gvoice-background-color-dark; 116 | --gvoice-text-color: gvoice-text-color; 117 | --gvoice-border-color: #444444; 118 | --gvoice-white: #FFFFFF; 119 | } 120 | } 121 | 122 | /*Make Elements Square or Round*/ 123 | .Bqxti-VCkuzd, .gvPageRoot .bubble, .incoming .bubble, .gvMessageItem-bubble /*sent and received message bubbles*/ 124 | .YxDDMd-Dfn1ve .YxDDMd-VCkuzd, .d8IJmb-haAclf.d8IJmb-E6eRQd, .d8IJmb-haAclf.d8IJmb-E6eRQd .d8IJmb-HiaYvf, .container.last, .container.first, /*corners of pictures in threads*/ 125 | .photo, /*User pictures*/ 126 | .avatar, /*User pictures in the message list*/ 127 | .chip, /*receiving calls button at the top*/ 128 | .GYQtq-CLHpQd .GYQtq-mpvPNd, /*Send a message icon*/ 129 | .gvPageRoot .container.batch-selected .batch-selection, /*selecting multiple icons on the call list*/ 130 | .gvPageRoot .container::before, /*background of highlighted items when selecting multiple items on the call list*/ 131 | .rkljfb-rVkNNe, /*Highlight when selecting multiple message items/threads*/ 132 | .gvThreadItem-avatarBatchSelected .gvThreadItem-avatarCheckmark.gvThreadItem-avatarCheckmark.gvThreadItem-avatarCheckmark, .gvThreadItem-avatarCheckmark, /*checkbox when selecting multiple items on the message list*/ 133 | .gvThreadItem-root::before, /*background of highlighted items when selecting multiple items on the message list*/ 134 | .YxDDMd-MJZihc.YxDDMd-XLMwWc .YxDDMd-VCkuzd, /*bottom right corner of random pictures*/ 135 | .gvThreadItem-selected, .gvThreadItem-root:hover, /*active thread from the message list*/ 136 | .ZRgO8c-ienHib, /*Icon when selecting specific messages in a thread*/ 137 | .md-button.md-icon-button, /*highlight when hovering over 3-dot for each message*/ 138 | .q2hAhb-OjaX2e.q2hAhb-OjaX2e.q2hAhb-OjaX2e, /*send message box at the bottom*/ 139 | .gvImageAttachment-image, /*Image attachments*/ 140 | .gvVideoAttachment-video, /*Video attachments*/ 141 | .gmat-nav-list-item, /*selected icon in the nav bar*/ 142 | .rkljfb-H9tDt::before, /*selected items in a list*/ 143 | .gvPageRoot .button, /*numpad numbers*/ 144 | .call-button, /*call button next to the name/number in the dialer*/ 145 | .mat-mdc-icon-button, .mat-mdc-icon-button .mat-mdc-button-persistent-ripple, /*end call button*/ 146 | { 147 | border-radius: var(--gvoice-corner-radius) !important; 148 | /*2.0 is the default (rounded), 0 will make the edges completely square*/ 149 | } 150 | 151 | /*Roundness of the highlight of the selected item on the left side bar*/ 152 | .gmat-mdc-list.mat-mdc-nav-list.mat-mdc-list-base a.mat-mdc-list-item { 153 | --mat-list-active-indicator-shape: 0 0 0 0 !important; 154 | } 155 | 156 | /*General text color*/ 157 | .gvPageRoot .grey-900, .thread-info{ 158 | color: var(--gvoice-text-color) !important; 159 | } 160 | 161 | /*General Link Colors*/ 162 | a { 163 | color: var(--gvoice-text-color) !important; 164 | background-color: transparent !important; 165 | } 166 | 167 | /*Spinners*/ 168 | .mat-progress-spinner circle, .mat-spinner circle, #mpcInit > svg:nth-child(1) > path:nth-child(1){ 169 | stroke: var(--gvoice-accent-color) !important; 170 | } 171 | 172 | /*Greeting text color*/ 173 | .greeting, .status{ 174 | color: var(--gvoice-text-color) !important; 175 | } 176 | 177 | /*Not connected notification at top*/ 178 | .zQ5vdd-haAclf { 179 | background-color: var(--gvoice-background-color-light) !important; 180 | } 181 | 182 | /*Google Voice Logo*/ 183 | img.gb_Dc { 184 | filter: hue-rotate(var(--gvoice-accent-color-rotate)) !important; 185 | -webkit-filter: hue-rotate(var(--gvoice-accent-color-rotate)) !important; 186 | -o-filter: hue-rotate(var(--gvoice-accent-color-rotate)) !important; 187 | -ms-filter: hue-rotate(var(--gvoice-accent-color-rotate)) !important; 188 | } 189 | 190 | /*Alternative menthod for recoloring the Google Voice Logo*/ 191 | /*img.gb_Oc{ 192 | width: 0px !important; 193 | height: 0px !important; 194 | padding: 16px !important; 195 | background-size: 32px 32px !important; 196 | background-image: url("https://upload.wikimedia.org/wikipedia/commons/b/bf/Google_Voice_icon_(2020).svg") !important; 197 | background-image: url("https://upload.wikimedia.org/wikipedia/commons/1/11/Google_Voice_icon_(2018-2020).svg") !important; 198 | background-image: url("https://upload.wikimedia.org/wikipedia/commons/1/1e/Google_voice_(2009-2012).svg") !important; 199 | fill: var(--gvoice-accent-color) !important; 200 | } 201 | 202 | /*Text color for Availability*/ 203 | .title { 204 | color: var(--gvoice-text-color) !important; 205 | } 206 | 207 | /*Availability Drop Down*/ 208 | .availability-menu-panel .cdk-dialog-container { 209 | background: var(--gvoice-background-color-light) !important; 210 | } 211 | 212 | /*Availability Drop Down DND Button*/ 213 | .dnd-status { 214 | background-color: var(--gvoice-background-color-dark) !important; 215 | } 216 | .dnd-status:hover { 217 | background-color: var(--gvoice-background-color-light) !important; 218 | } 219 | .mat-mdc-button:not(:disabled) { 220 | color: var(--gvoice-text-color) !important; 221 | } 222 | 223 | /*===Audio settings popup===*/ 224 | /*Background color*/ 225 | div.mat-mdc-select-panel { 226 | background-color: var(--gvoice-background-color-dark) !important; 227 | } 228 | /*Text color in dropdown boxes*/ 229 | .mat-mdc-select-min-line { 230 | color: var(--gvoice-text-color) !important; 231 | } 232 | /*Outline of item when not selected*/ 233 | .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading, .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing { 234 | border-color: var(--gvoice-text-color) !important; 235 | } 236 | /*Outline of item when selected*/ 237 | .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__leading, .mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__trailing { 238 | border-color: var(--gvoice-accent-color) !important; 239 | } 240 | /*Checkmark for selected source*/ 241 | .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after { 242 | color: var(--gvoice-accent-color) !important; 243 | } 244 | /*Arrow next to text indicating a dropdown box*/ 245 | .mat-mdc-select-arrow svg { 246 | fill: var(--gvoice-accent-color) 247 | } 248 | /*Search box suggestion list*/ 249 | /*li.ng-star-inserted:hover { 250 | background-color: red !important; 251 | }*/ 252 | 253 | /*Bottom Border for the Google Bar*/ 254 | #gvPageRoot > div:nth-child(1){ 255 | border-bottom: 0px solid var(--gbar-border-color) !important 256 | } 257 | 258 | /*Highlight and hovering background*/ 259 | .gvThreadItem-selected, .gvThreadItem-root:hover /*Message List*/ { 260 | background-color: var(--gvoice-background-color-light) !important; 261 | } 262 | 263 | /*Left Nav Bar*/ 264 | div.content > div:nth-child(2) > gv-side-nav { 265 | background: var(--gvoice-background-color) !important; 266 | } 267 | 268 | /*=======Unread Navigation Item=======*/ 269 | .gvPageRoot .unread .navItemLabel { 270 | color: var(--gvoice-accent-color) !important; 271 | opacity: 0.5 !important; 272 | } 273 | 274 | /*=======Navigation Items=======*/ 275 | .mdc-list-item__primary-text { 276 | color var(--gvoice-text-color) !important; 277 | } 278 | .mdc-list-item:hover .mdc-list-item__primary-text { 279 | color: var(--gvoice-white) !important; 280 | } 281 | 282 | /*=======Selected Navigation Item=======*/ 283 | .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text { 284 | color: var(--gvoice-accent-color) !important; 285 | } 286 | .gmat-mdc-list.mat-mdc-nav-list .mdc-list-item--activated { 287 | background-color: rgba(#4284F4, 0.2) !important 288 | } 289 | 290 | /*=======Call List=======*/ 291 | /*Call List items*/ 292 | .gvPageRoot .container.active, .gvPageRoot [_nghost-wka-c309] .container:hover { 293 | background-color: var(--gvoice-background-color-light) !important; 294 | } 295 | 296 | /*Selected call background*/ 297 | .gvMessagingView-threadDetailsWrap { 298 | background: var(--gvoice-background-color) 299 | } 300 | 301 | /*Selected call text*/ 302 | .primary-text { 303 | color: var(--gvoice-text-color) !important; 304 | } 305 | 306 | /*Call List multi-select icon*/ 307 | .mat-ripple.container.read.ng-star-inserted:hover, .mat-ripple.container.read.ng-star-inserted:focus { 308 | background-color: var(--gvoice-background-color-light) !important; 309 | } 310 | .gvPageRoot .container.batch-selected .batch-selection { 311 | background: var(--gvoice-accent-color) !important; 312 | } 313 | .gvPageRoot .container::after { 314 | border-top: 3px solid var(--gvoice-accent-color) !important; 315 | } 316 | .gvPageRoot .container { 317 | color: var(--gvoice-accent-color) !important; 318 | } 319 | .gvPageRoot .container::before { 320 | background-color: var(--gvoice-background-color-dark) !important; 321 | } 322 | 323 | 324 | /*=======Text Messages=======*/ 325 | /*Input box at the bottom*/ 326 | .cdk-textarea-autosize { 327 | color: var(--gvoice-white) !important; 328 | background: var(--gvoice-background-color) !important; 329 | } 330 | .gvThreadDetails-messageEntryContainer { 331 | background: initial !important; 332 | } 333 | 334 | /*Selected message phone number*/ 335 | .gvMessageListHeader-subtitle { 336 | color: var(--gvoice-text-color) !important; 337 | } 338 | 339 | /*Outgoing Text messages*/ 340 | .bubble { 341 | color: var(--gvoice-white) !important; 342 | /*#00695c;*/ 343 | background-color: var(--gvoice-background-color-light) !important; 344 | } 345 | 346 | /*Incoming Text messages*/ 347 | .incoming .bubble, .gvMessageItem-bubble { 348 | background-color: var(--gvoice-accent-color) !important; 349 | color: var(--gvoice-white) !important; 350 | } 351 | 352 | /*Incoming and outgoing name and date/time text*/ 353 | .gvMessageItem-postTime, .gvMessageItem-status { 354 | color: var(--gvoice-text-color) !important; 355 | } 356 | 357 | ::-moz-placeholder { 358 | color: var(--gvoice-white) !important; 359 | opacity: 1 !important; 360 | } 361 | 362 | /*Overall Background and Text*/ 363 | md-content, body, .gvInfiniteScroll-root, .gvMessageListHeader-messageHeader, .md-body-1 { 364 | background-color: var(--gvoice-background-color) !important; 365 | color: var(--gvoice-white) !important; 366 | } 367 | 368 | /*Text Message List*/ 369 | .GYQtq-CLHpQd { 370 | border-right: 1px solid var(--gvoice-border-color) !important; 371 | } 372 | 373 | /*Text Message List Text*/ 374 | .gvThreadItem-root, .gvThreadItem-unread { 375 | color: var(--gvoice-text-color) !important; 376 | } 377 | 378 | /* Message multi-select icon */ 379 | /*.ZRgO8c-oyZWsd:hover .ZRgO8c-ienHib { 380 | filter: brightness(150%) !important; 381 | -webkit-filter: brightness(150%) !important; 382 | -o-filter: brightness(150%) !important; 383 | -ms-filter: brightness(150%) !important; 384 | background-color: var(--gvoice-border-color) !important; 385 | } 386 | 387 | /*Message multi-select icon*/ 388 | .gvThreadItem-avatarBatchSelected .gvThreadItem-avatarCheckmark.gvThreadItem-avatarCheckmark.gvThreadItem-avatarCheckmark { 389 | background: var(--gvoice-accent-color) !important; 390 | } 391 | .gvBatchThreadSelectHeader-container::after{ 392 | border-top: 3px solid var(--gvoice-accent-color) !important; 393 | } 394 | .gvThreadItem-root::before { 395 | background-color: var(--gvoice-background-color-dark) !important; 396 | } 397 | 398 | /* Message multi-select icon color */ 399 | .ZRgO8c-GWfNzd .ZRgO8c-ienHib.ZRgO8c-ienHib, .rkljfb-ymuZHc .rkljfb-rVkNNe.rkljfb-rVkNNe.rkljfb-rVkNNe { 400 | background-color: var(--gvoice-accent-color) !important; 401 | } 402 | 403 | /*Message multi-select background color*/ 404 | .rkljfb-H9tDt::before, .gmat-nav-list-item.gmat-list-item-active { 405 | background-color: var(--gvoice-background-color-light) !important; 406 | } 407 | 408 | /*Message Title Text*/ 409 | .E4guKe-npMLoc { 410 | color: var(--gvoice-white) !important; 411 | } 412 | 413 | /*Message Date/Time Text*/ 414 | /*.E4guKe-biJjHb*/ 415 | .Bqxti-HIQJ9 { 416 | color: var(--gvoice-white) !important; 417 | } 418 | 419 | /*Message Preview Text*/ 420 | .E4guKe-bVEB4e { 421 | color: var(--gvoice-white) !important; 422 | } 423 | 424 | /*Unread items in list*/ 425 | .container[_ngcontent-fhd-c16], .gmat-subtitle-2 { 426 | font-weight: 600 !important; 427 | } 428 | 429 | /*Messages Subtitle Text*/ 430 | .uM2Vn-VdSJob { 431 | color: var(--gvoice-white) !important; 432 | } 433 | 434 | /*Messages More Options*/ 435 | md-menu-content { 436 | background-color: var(--gvoice-background-color-dark) !important; 437 | } 438 | 439 | /*Message Search*/ 440 | /*Send a message box at bottom*/ 441 | .q2hAhb-OjaX2e.q2hAhb-OjaX2e.q2hAhb-OjaX2e{ 442 | background-color: var(--gvoice-background-color-dark) !important; 443 | color: var(--gvoice-text-color) !important; 444 | } 445 | 446 | /*Table Headers*/ 447 | .GYQtq-RZ063d, /* top right headers */ 448 | .tDBuBb-NastXc, /* call details */ 449 | .hlKfD-tJHJj, /* make call */ 450 | .q2hAhb-RZ063d/* top right header */ 451 | { 452 | border-bottom: 1px solid var(--gvoice-border-color) !important; 453 | color: var(--gvoice-white) !important; 454 | } 455 | 456 | /*Bottom Box*/ 457 | .tDBuBb-Zpe2Q, /* phone calls */ 458 | .hlKfD-fqVkud/* make call */ 459 | { 460 | border-top: 1px solid var(--gvoice-border-color) !important; 461 | color: var(--gvoice-white) !important; 462 | } 463 | 464 | /*Call Contact Text Color*/ 465 | .md-button.md-primary { 466 | color: var(--gvoice-accent-color) !important; 467 | } 468 | 469 | /* people and options right slideout */ 470 | .GYQtq-pZARYb { 471 | border-left: 1px solid var(--gvoice-border-color) !important; 472 | } 473 | 474 | /*Icons*/ 475 | .md-button, 476 | .mat-icon, 477 | .md-icon-button, 478 | .gv-nav-item-icon, 479 | .material-icons-extended { 480 | color: var(--gvoice-white) !important; 481 | } 482 | 483 | /*Primary Icon*/ 484 | .mat-primary > svg { 485 | color: var(--gvoice-accent-color) !important; 486 | } 487 | 488 | /*Clicking on an icon*/ 489 | button.activated { 490 | color: var(--gvoice-accent-color) !important; 491 | } 492 | 493 | /* blue circle transition when hovering over buttons */ 494 | a.md-button.md-default-theme.md-icon-button:hover:not([disabled]), 495 | a.md-button.md-icon-button:hover:not([disabled]), 496 | .md-button.md-default-theme.md-icon-button:hover:not([disabled]), 497 | .md-button.md-icon-button:hover:not([disabled]) .md-icon-button.uYPEqb-H9tDt.md-button:hover/* send message icon */ 498 | { 499 | background-color: var(--gvoice-accent-color) !important; 500 | } 501 | 502 | .md-button.md-fab, /* Send message icon background */ 503 | .hlKfD-NkdnBe.hlKfD-NkdnBe:not([disabled])/* dial button */ 504 | { 505 | background-color: var(--gvoice-accent-color) !important; 506 | } 507 | 508 | /*======= selected section icon color =======*/ 509 | .gmat-nav-list-item.gmat-list-item-active .mat-icon svg { 510 | color: var(--gvoice-accent-color) !important; 511 | } 512 | 513 | /* Item selection from list background */ 514 | /*.IC8yrb-haAclf, /* left side items section header */ 515 | .TK1dEe-haAclf/* message section header */ 516 | { 517 | background-color: var(--gvoice-background-color) !important; 518 | } 519 | .TK1dEe-haAclf::after{ 520 | border-top: 3px solid var(--gvoice-accent-color) !important; 521 | } 522 | 523 | /*Message Section Header*/ 524 | .mat-icon-button.mat-primary, .gvPageRoot .teal-800, .simpleSnackBarAction { 525 | color: var(--gvoice-accent-color) !important; 526 | } 527 | 528 | /*Message Section Header when a message is selected*/ 529 | #ib57, .mat-icon-button .mat-icon, .gvPageRoot .teal-800 { 530 | color: var(--gvoice-accent-color) !important; 531 | } 532 | 533 | .IC8yrb-haAclf::after { 534 | border-top: 3px solid var(--gvoice-accent-color) !important; 535 | } 536 | 537 | /* items selected from list */ 538 | .E4guKe-ymuZHc .E4guKe-rVkNNe.E4guKe-rVkNNe.E4guKe-rVkNNe { 539 | background-color: var(--gvoice-accent-color) !important; 540 | } 541 | 542 | /* selection sections left border */ 543 | .FzDNDf-gk6SMd.FzDNDf-k77Iif, /* main sections */ 544 | .ieK2Ab-sk6lWe.ieK2Ab-gk6SMd, /* 3 dot while in settings menu */ 545 | .Xkk8O-gk6SMd, /* settings section */ 546 | .rkljfb-gk6SMd/* msg/call/vm/archive lists selected item */ 547 | { 548 | border-left-color: var(--gvoice-accent-color) !important; 549 | } 550 | 551 | .a3Rk8e-Sfac4e/*Mark all as read png icon */ 552 | { 553 | filter: invert(100%) brightness(5) !important; 554 | -webkit-filter: invert(100%) brightness(5) !important; 555 | -o-filter: invert(100%) brightness(5) !important; 556 | -ms-filter: invert(100%) brightness(5) !important; 557 | } 558 | 559 | /* mark all as read dialog */ 560 | md-dialog.md-default-theme, md-dialog { 561 | background-color: var(--gvoice-background-color-dark) !important; 562 | } 563 | 564 | /*======= Voicemail =======*/ 565 | /*Progress Bar*/ 566 | .gvVoicemailPlayer-progressBarLine { 567 | background-color: var(--gvoice-white) !important; 568 | } 569 | .gvVoicemailPlayer-progressBar, .gvVoicemailPlayer-progressBarDot, .gvVoicemailPlayer-progressBarLineDummy { 570 | background-color: var(--gvoice-accent-color) !important; 571 | } 572 | 573 | 574 | /*======= unread counts =======*/ 575 | .IhMtsf-ho7Xm-NnAfwf, .navItemBadge { 576 | background-color: var(--gvoice-accent-color) !important; 577 | color: #FFFFFF !important; 578 | } 579 | 580 | /* call dialog call button */ 581 | .md-button.md-primary { 582 | color: var(--gvoice-accent-color) !important; 583 | } 584 | 585 | /* calling dialog text */ 586 | .q68de-Ne3sFf, .q68de-iOyk4d, 587 | md-select .md-select-value.md-select-placeholder, 588 | md-input-container.md-input-has-value label:not(.md-no-float) { 589 | color: var(--gvoice-white) !important; 590 | } 591 | 592 | /* calling dialog selected option text */ 593 | md-select-menu md-option[selected], 594 | md-select:focus:not([disabled]) .md-select-value, 595 | md-select-menu md-content md-option { 596 | color: var(--gvoice-accent-color) !important; 597 | } 598 | 599 | /* calling dialog selected option lower border */ 600 | md-select:focus:not([disabled]) .md-select-value, 601 | md-select .md-select-value { 602 | border-bottom-color: var(--gvoice-accent-color) !important; 603 | } 604 | 605 | /* calling dialog menu option highlight */ 606 | md-select-menu md-option:focus:not([disabled]):not([selected]), 607 | md-select-menu md-content md-option:hover:not([disabled]) { 608 | background-color: var(--gvoice-background-color-dark) !important; 609 | } 610 | 611 | /*Reject incoming call button*/ 612 | .I2Bidd-P77PNc.I2Bidd-P77PNc:not([disabled]) { 613 | background-color: #d93025 !important; 614 | } 615 | 616 | /*Accept incoming call button*/ 617 | .I2Bidd-zddfv.I2Bidd-zddfv:not([disabled]) { 618 | background-color: #1e8e3e !important; 619 | } 620 | 621 | /* call section */ 622 | .GYQtq-ocIXwb { 623 | background-color: var(--gvoice-background-color) !important; 624 | } 625 | 626 | /* dial pad section */ 627 | /*.hlKfD-Mjd3I { 628 | border-color: var(--gvoice-border-color) !important; 629 | } 630 | 631 | /* dial pad text */ 632 | /*.lp3vjd-LgbsSe, .lp3vjd-cHYyed, .button[_ngcontent-jcn-c21], .button[_ngcontent-pcw-c22] { 633 | color: var(--gvoice-white) !important; 634 | } 635 | 636 | /* call header text color and border */ 637 | .hlKfD-pex4lc, .hlKfD-KdeNEf { 638 | color: var(--gvoice-white) !important; 639 | border-color: var(--gvoice-border-color) !important; 640 | } 641 | 642 | /*=======SETTINGS=======*/ 643 | /* settings left side background color */ 644 | .layout-row.flex.Xkk8O-haAclf.Xkk8O-kYvABc { 645 | background-color: var(--gvoice-background-color) !important; 646 | } 647 | 648 | /*Button Colors*/ 649 | .gmat-button .mat-stroked-button:not([disabled]), .gmat-button.mat-stroked-button:not([disabled]){ 650 | background: var(--gvoice-background-color-light) !important; 651 | color: var(--gvoice-accent-color) !important; 652 | } 653 | 654 | /*===Messages===*/ 655 | /*Header*/ 656 | .sectionTitle, .header{ 657 | color: var(--gvoice-text-color) !important; 658 | } 659 | 660 | /*Device Labels*/ 661 | .deviceLabel{ 662 | color: var(--gvoice-text-color)!important; 663 | } 664 | 665 | /*Sliders*/ 666 | .mat-slide-toggle-bar /*slider background*/{ 667 | background-color: rgba(255,255,255,0.38) !important; 668 | } 669 | .mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb /*Enabled slider*/{ 670 | background-color: var(--gvoice-accent-color) !important; 671 | } 672 | 673 | /*===Calls===*/ 674 | /*Subheadings*/ 675 | .internalHeader{ 676 | color: var(--gvoice-text-color) !important; 677 | } 678 | 679 | .hOvp7c-jW1oEc, /* settings message icon */ 680 | .GxiAAc-mQ2ste.GxiAAc-mQ2ste.GxiAAc-k9P1i/* settings vm greeting play button */ 681 | { 682 | background-color: var(--gvoice-accent-color) !important; 683 | } 684 | 685 | /*===Voicemail===*/ 686 | /*Active greeting*/ 687 | .active-title{ 688 | color: var(--gvoice-accent-color) !important; 689 | } 690 | 691 | /*Greeting name*/ 692 | .name{ 693 | color: var(--gvoice-text-color) !important; 694 | } 695 | 696 | /*=Manage All Greetings=*/ 697 | /*Background*/ 698 | .gmat-dialog-panel .mat-dialog-container{ 699 | background-color: var(--gvoice-background-color-light) !important; 700 | } 701 | 702 | /*Headings*/ 703 | .subtitle{ 704 | color: var(--gvoice-accent-color) !important; 705 | } 706 | 707 | /* settings voicemail greeting add button */ 708 | /*.PFS3Eb-g6kmac { 709 | border-color: var(--gvoice-accent-color) !important; 710 | } 711 | 712 | /*md-checkbox.md-checked .md-icon, /* settings checkbox buttons */ 713 | /*md-switch.md-checked .md-thumb/* settings switch circles */ 714 | /*{ 715 | background-color: var(--gvoice-accent-color) !important; 716 | } 717 | 718 | /*===Web Notifications===*/ 719 | .notificationText{ 720 | color: var(--gvoice-text-color) !important; 721 | } 722 | 723 | /*===Payments===*/ 724 | /*Current Balance*/ 725 | .creditSubheader{ 726 | color: var(--gvoice-accent-color) !important; 727 | } 728 | 729 | /*Auto-Recharge*/ 730 | .mat-select-value{ 731 | color: var(--gvoice-text-color) 732 | } 733 | #mat-select-0-panel{ 734 | background-color: var(--gvoice-background-color-light) !important; 735 | } 736 | .mat-primary .mat-option.mat-selected:not(.mat-option-disabled){ 737 | color: var(--gvoice-accent-color) !important; 738 | } 739 | /*.mat-option-text{ 740 | color: var(--gvoice-text-color) !important; 741 | } 742 | 743 | /* settings switch background bar */ 744 | md-switch .md-bar { 745 | background-color: var(--gvoice-border-color) !important; 746 | } 747 | 748 | /* settings small text items */ 749 | .Y01sTe-akRZae { 750 | color: var(--gvoice-white) !important; 751 | } 752 | 753 | /* new linked number dialog input box */ 754 | md-input-container .md-input { 755 | color: var(--gvoice-white) !important; 756 | border-color: var(--gvoice-accent-color) !important; 757 | } 758 | 759 | /* new linked number button */ 760 | .b1gcZe-KZ43Se md-icon { 761 | border-color: var(--gvoice-accent-color) !important; 762 | } 763 | 764 | /* Manage Greetings text background */ 765 | /*.sMgtJb-tJHJj { 766 | background-color: unset !important; 767 | } 768 | 769 | /*=======Audio Settings=======*/ 770 | /*Background*/ 771 | .full-panel{ 772 | background-color: var(--gvoice-background-color-light) !important; 773 | } 774 | 775 | /*Microphone Feedback*/ 776 | .gvPageRoot .bars{ 777 | color: var(--gvoice-accent-color) !important; 778 | } 779 | 780 | /*Dropdown Lists*/ 781 | .mat-select-panel{ 782 | background-color: var(--gvoice-background-color-dark) 783 | } 784 | 785 | /*Dropdown List Text Color*/ 786 | .mat-option.mat-focus-indicator.ng-star-inserted.mat-selected.mat-active{ 787 | color: var(--gvoice-accent-color) !important; 788 | } 789 | .mat-option.mat-focus-indicator.ng-star-inserted{ 790 | color: var(--gvoice-text-color) !important 791 | } 792 | 793 | /*Active Dropdown List*/ 794 | .mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{ 795 | color: var(--gvoice-accent-color) !important; 796 | } 797 | 798 | /* new contact name input box label */ 799 | md-input-container label { 800 | color: var(--gvoice-white) !important; 801 | } 802 | 803 | /* new contact buttons */ 804 | .gmat-button .mat-button:not([disabled]), .gmat-button.mat-button:not([disabled]){ 805 | color: var(--gvoice-accent-color) !important; 806 | } 807 | .mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay, .gmat-button .mat-flat-button:not([disabled]), .gmat-button.mat-flat-button:not([disabled]){ 808 | background: var(--gvoice-accent-color) !important; 809 | } 810 | 811 | /* new message recipient text input box */ 812 | input.ng-valid { 813 | color: var(--gvoice-white) !important; 814 | } 815 | 816 | /* suggested new contact phone # label */ 817 | .md-autocomplete-suggestions-container li { 818 | color: var(--gvoice-white) !important; 819 | } 820 | 821 | /* contact selection background */ 822 | .md-whiteframe-4dp { 823 | background-color: var(--gvoice-background-color-dark) !important; 824 | } 825 | 826 | /* contact card name and number type */ 827 | .dOUild-XSJd1, .dOUild-Od0oM, .Gb0ubd-Od0oM { 828 | color: var(--gvoice-white) !important; 829 | } 830 | 831 | /* center of starred contact star badge */ 832 | .dOUild-yreACb { 833 | background-color: var(--gvoice-background-color-dark) !important; 834 | } 835 | 836 | /* circle in starred contact star badge */ 837 | .dOUild-fI6EEc { 838 | color: #f4b400 !important; 839 | } 840 | 841 | /* voicemail playback progress bar */ 842 | .wnqXZe-P1ekSe-ZMv3u, .wnqXZe-xro71b, .wnqXZe-Igk6W, .wnqXZe-kemPlf { 843 | background-color: var(--gvoice-accent-color) !important; 844 | } 845 | 846 | /* search results send message button */ 847 | .q2hAhb-OjaX2e { 848 | background-color: var(--gvoice-accent-color) !important; 849 | } 850 | 851 | /* search results send message button icon */ 852 | .q2hAhb-OjaX2e md-icon { 853 | color: var(--gvoice-accent-color) !important; 854 | } 855 | 856 | /* call button text */ 857 | .md-button.md-raised:not([disabled]) { 858 | color: var(--gvoice-white) !important; 859 | } 860 | 861 | /* place border below google bar container (top of google voice frame) */ 862 | .gv_root { 863 | border-top: 1px solid var(--gvoice-border-color) !important; 864 | } 865 | 866 | /*=======Dialer=======*/ 867 | /*Main background color*/ 868 | .gvCallSidebar-root{ 869 | background-color: var(--gvoice-background-color) !important; 870 | } 871 | 872 | /*Call as text*/ 873 | .call-as-label, .phone-number{ 874 | color: var(--gvoice-text-color) !important; 875 | } 876 | 877 | /*Enter Name or Number*/ 878 | input.ng-valid { 879 | background-color: var(--gvoice-background-color) !important 880 | } 881 | 882 | /*Duration text*/ 883 | .GHQeBe-jOfkMb{ 884 | color: var(--gvoice-text-color) !important; 885 | } 886 | 887 | /*Caller name*/ 888 | .GHQeBe-qdm4Zd{ 889 | color: var(--gvoice-text-color) !important; 890 | } 891 | 892 | /*Caller Phone Number*/ 893 | .GHQeBe-wKtwcc, .GHQeBe-jOfkMb, .phone-number-details { 894 | color: var(--gvoice-text-color) !important; 895 | } 896 | 897 | /*Dialed Numbers*/ 898 | .gmat-headline-5{ 899 | background-color: var(--gvoice-background-color) !important; 900 | } 901 | 902 | /*Numberpad Numbers*/ 903 | .gvPageRoot .button { 904 | background-color: var(--gvoice-background-color) !important; 905 | } 906 | .gvPageRoot .button:hover { 907 | background-color: var(--gvoice-background-color-dark) !important; 908 | } 909 | .button { 910 | color: var(--gvoice-text-color) !important; 911 | } 912 | 913 | /*Show keypad / hide keypad background*/ 914 | .root.mat-button, .mat-mdc-button .mat-mdc-button-touch-target { 915 | background-color: var(--gvoice-background-color) !important; 916 | color: var(--gvoice-text-color) !important; 917 | } 918 | 919 | /*Show keypad / hide keypad icon*/ 920 | .icon > svg:nth-child(1) > path:nth-child(1){ 921 | color: var(--gvoice-accent-color) !important; 922 | } 923 | 924 | /*Message button*/ 925 | .button.button[_ngcontent-ngx-c13], .gvPageRoot [_nghost-ng-c2158453531] { 926 | background-color: var(--gvoice-background-color-light) !important; 927 | } 928 | .icon.icon{ 929 | color: var(--gvoice-accent-color) !important; 930 | } 931 | 932 | 933 | /*Active Call Background*/ 934 | .ng-tns-c315-1.ng-star-inserted, .dtmf-input, .active-call-wrapper{ 935 | background-color: var(--gvoice-background-color) !important; 936 | border: 0px solid var(--gvoice-border-color) !important; 937 | color: var(--gvoice-text-color) 938 | } 939 | 940 | /*Active Call - caller name*/ 941 | .remote-display-name { 942 | color: var(--gvoice-text-color) !important; 943 | } 944 | 945 | } 946 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More_considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | 307 | including for purposes of Section 3(b); and 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public 411 | licenses. Notwithstanding, Creative Commons may elect to apply one of 412 | its public licenses to material it publishes and in those instances 413 | will be considered the “Licensor.” The text of the Creative Commons 414 | public licenses is dedicated to the public domain under the CC0 Public 415 | Domain Dedication. Except for the limited purpose of indicating that 416 | material is shared under a Creative Commons public license or as 417 | otherwise permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the 425 | public licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. 428 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dark Userstyles 2 | This is a collection of userstyles that theme various sites. 3 | To use this style, first install [Stylus](https://add0n.com/stylus.html) and then click on the button below. 4 | 5 | The following userstyles are in this repository, select any of the links below to learn more about each style: 6 | - [Google Bar - Dark Style](https://github.com/Devo7v/UserCSS/#google-bar---dark-style) 7 | - [Google Calendar - Dark Style](https://github.com/Devo7v/UserCSS/#google-calendar---dark-style) 8 | - [Goolge Contacts - Dark Style](https://github.com/Devo7v/UserCSS/#google-contacts---dark-style) 9 | - [Google Hangouts - Dark Style](https://github.com/Devo7v/UserCSS/#google-hangouts---dark-style) 10 | - [Google Play Music - Dark Style](https://github.com/Devo7v/UserCSS/#google-play-music---dark-style) 11 | - [Google Voice - Dark Style](https://github.com/Devo7v/UserCSS/#google-voice---dark-style) 12 | - [YouTube Music - Light Style](https://github.com/Devo7v/UserCSS/#youtube-music---light-style) 13 | - [Swappa.com - Dark Style](https://github.com/Devo7v/UserCSS/#swappacom---dark-style) 14 | 15 | ## Google Bar - Dark Style 16 | **If anybody knows how to make the sites user-configurable please submit a pull request. Functionally this is the last thing I'd like to add to this style.** 17 | ![alt text](https://raw.githubusercontent.com/Devo7v/UserCSS/master/Screenshots/GoogleBar.png "Google Bar - Dark Style Screenshot (Screenshot needs to be updated)") 18 | 19 | This user style currently themes the Google Bar and Apps/User popup buttons across the following services: 20 | - [Google Calendar](https://calendar.google.com/) 21 | - [Google Contacts](https://contacts.google.com/) 22 | - [Google Docs](https://docs.google.com/) 23 | - [Google Drive](https://drive.google.com/) 24 | - [Google Hangouts](https://hangouts.google.com/) 25 | - [Gmail](https://mail.google.com/) 26 | - [My Account](https://myaccount.google.com/) 27 | - [Google News](https://news.google.com/) 28 | - [Google Play Store](https://play.google.com/store) 29 | - [Google+](https://plus.google.com/) 30 | - [Google Translate](https://translate.google.com/) 31 | - [Google Voice](https://voice.google.com/) 32 | - [Google Pay/Wallet](https://pay.google.com/) 33 | 34 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-116b59.svg?longCache=true&style=for-the-badge)](https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleBar-Dark.user.css) 35 | 36 | ## Google Calendar - Dark Style 37 | In order to fully theme the Google Bar within Google Calendar, install the [Google Bar - Dark Style](https://github.com/Devo7v/UserCSS/#google-bar---dark-style) above. 38 | ![alt text](https://raw.githubusercontent.com/Devo7v/UserCSS/master/Screenshots/GoogleCalendar.jpeg "Google Calendar - Dark Style Screenshot (Screenshot needs to be updated)") 39 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-116b59.svg?longCache=true&style=for-the-badge)](https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleCalendar-Dark.user.css) 40 | 41 | ## Google Contacts - Dark Style 42 | In order to fully theme the Google Bar within Google Contacts, install the [Google Bar - Dark Style](https://github.com/Devo7v/UserCSS/#google-bar---dark-style) above. 43 | ![alt text](https://raw.githubusercontent.com/Devo7v/UserCSS/master/Screenshots/GoogleContacts.png "Google Contacts - Dark Style Screenshot (Screenshot needs to be updated)") 44 | 45 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-116b59.svg?longCache=true&style=for-the-badge)](https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleContacts-Dark.user.css) 46 | 47 | ## Google Hangouts - Dark Style 48 | A theme to make hangouts dark while retaining the accent colors. 49 | 50 | ![alt text](https://raw.githubusercontent.com/Devo7v/UserCSS/master/Screenshots/Hangouts.png "Google Hangouts - Dark Style Screenshot") 51 | 52 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-116b59.svg?longCache=true&style=for-the-badge)](https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleHangouts-Dark.user.css) 53 | 54 | 55 | ## Google Play Music - Dark Style 56 | A dark style for Google Music. This style allows you to customize the background color, accent color, and the roundness of the Artist pictures. 57 | 58 | ![alt text](https://raw.githubusercontent.com/Devo7v/UserCSS/master/Screenshots/GoogleMusic.png "Google Music - Dark Style Screenshot") 59 | 60 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-116b59.svg?longCache=true&style=for-the-badge)](https://raw.githubusercontent.com/Devo7v/UserCSS/master/GooglePlayMusic-Dark.user.css) 61 | 62 | ## Google Voice - Dark Style 63 | In order to fully theme the Google Bar within Google Voice, install the [Google Bar - Dark Style](https://github.com/Devo7v/UserCSS/#google-bar---dark-style) above. 64 | 65 | ![alt text](https://raw.githubusercontent.com/Devo7v/UserCSS/master/Screenshots/GoogleVoice.png "Google Voice - Dark Style Screenshot") 66 | 67 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-116b59.svg?longCache=true&style=for-the-badge)](https://raw.githubusercontent.com/Devo7v/UserCSS/master/GoogleVoice-Dark.user.css) 68 | 69 | ## YouTube Music - Light Style 70 | 71 | A light style for YouTube Music. This style allows you to choose whether to use YouTube Music or Google Play Music branding as well as to modify the background color of the original dark theme. 72 | 73 | ![alt text](https://github.com/Devo7v/UserCSS/raw/master/Screenshots/YouTubeMusic.jpg "YouTube Music - Light Style Screenshot") 74 | 75 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-116b59.svg?longCache=true&style=for-the-badge)](https://raw.githubusercontent.com/Devo7v/UserCSS/master/YouTubeMusic-Light.user.css) 76 | 77 | 78 | 79 | ## Swappa.com - Dark Style 80 | ![alt text](https://raw.githubusercontent.com/Devo7v/UserCSS/master/Screenshots/Swappa.png "Swappa.com - Dark Style Screenshot") 81 | 82 | [![Install directly with Stylus](https://img.shields.io/badge/Install%20directly%20with-Stylus-116b59.svg?longCache=true&style=for-the-badge)](https://raw.githubusercontent.com/Devo7v/UserCSS/master/Swappa-Dark.user.css) 83 | -------------------------------------------------------------------------------- /Screenshots/GPM_to_YTM-v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/GPM_to_YTM-v2.gif -------------------------------------------------------------------------------- /Screenshots/GPM_to_YTM.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/GPM_to_YTM.gif -------------------------------------------------------------------------------- /Screenshots/GoogleBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/GoogleBar.png -------------------------------------------------------------------------------- /Screenshots/GoogleCalendar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/GoogleCalendar.jpeg -------------------------------------------------------------------------------- /Screenshots/GoogleContacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/GoogleContacts.png -------------------------------------------------------------------------------- /Screenshots/GoogleMusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/GoogleMusic.png -------------------------------------------------------------------------------- /Screenshots/GoogleVoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/GoogleVoice.png -------------------------------------------------------------------------------- /Screenshots/Hangouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/Hangouts.png -------------------------------------------------------------------------------- /Screenshots/Swappa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/Swappa.png -------------------------------------------------------------------------------- /Screenshots/YouTubeMusic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devo7v/UserCSS/68145f1890abc3680422b9e383800a6df3ca8ce8/Screenshots/YouTubeMusic.jpg -------------------------------------------------------------------------------- /Screenshots/on_platform_logo_light.svg: -------------------------------------------------------------------------------- 1 | 2 | 14 | 16 | 34 | 41 | 50 | 55 | 61 | 62 | -------------------------------------------------------------------------------- /Swappa-Dark.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name Swappa.com - Dark Style 3 | @namespace Devo7v 4 | @version 0.2.2 5 | @homepageURL https://github.com/Devo7v/UserCSS 6 | @supportURL https://github.com/Devo7v/UserCSS/issues 7 | @updateURL https://raw.githubusercontent.com/Devo7v/UserCSS/master/Swappa-Dark.user.css 8 | @description Adds dark theming to Swappa.com 9 | @license CC-BY-NC-SA-4.0 10 | @author Devo7v 11 | 12 | @preprocessor stylus 13 | 14 | @var color swappa-accent-color "Accent Color" #009A44 15 | @var color swappa-primary-background-color "Primary Background Color" #333333 16 | @var color swappa-light-background-color "Lighter Background Color" #555555 17 | @var color swappa-dark-background-color "Darker Background Color" #222222 18 | @var color swappa-primary-text-color "Main Text Color" #CCCCCC 19 | @var color swappa-primary-line-color "Color for Borders & Lines" #777777 20 | @var checkbox swappa-box-shadow-check "Show Shadow Behind Elements" 1 21 | @var select SystemTheme "Apply Style Under System Theme"[ 22 | "Dark" , 23 | "Light", 24 | "Always" 25 | ] 26 | ==/UserStyle== */ 27 | 28 | 29 | 30 | @-moz-document domain("swappa.com"){ 31 | :root{ 32 | if swappa-box-shadow-check == 1{ 33 | --swappa-box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); 34 | } 35 | else if swappa-box-shadow-check == 0{ 36 | --swappa-box-shadow: 0 0px 0px rgba(0,0,0,0.19), 0 0px 0px rgba(0,0,0,0.23); 37 | } 38 | } 39 | 40 | /*=======Set the colors based on system theme options=======*/ 41 | if SystemTheme == "Dark" { 42 | @media (prefers-color-scheme: dark) { 43 | :root{ 44 | --swappa-accent-color: swappa-accent-color; 45 | --swappa-primary-background-color: swappa-primary-background-color; 46 | --swappa-light-background-color: swappa-light-background-color; 47 | --swappa-dark-background-color: swappa-dark-background-color; 48 | --swappa-primary-text-color: swappa-primary-text-color; 49 | --swappa-primary-line-color: swappa-primary-line-color; 50 | } 51 | } 52 | @media (prefers-color-scheme: light) { 53 | :root{ 54 | --swappa-accent-color: swappa-accent-color; 55 | --swappa-primary-background-color: #FFFFFF; 56 | --swappa-light-background-color: #EEEEEE; 57 | --swappa-primary-line-color: #AAAAAA; 58 | } 59 | } 60 | } 61 | 62 | if SystemTheme == "Light" { 63 | @media (prefers-color-scheme: light) { 64 | :root{ 65 | --swappa-accent-color: swappa-accent-color; 66 | --swappa-primary-background-color: swappa-primary-background-color; 67 | --swappa-light-background-color: swappa-light-background-color; 68 | --swappa-dark-background-color: swappa-dark-background-color; 69 | --swappa-primary-text-color: swappa-primary-text-color; 70 | --swappa-primary-line-color: swappa-primary-line-color; 71 | } 72 | } 73 | @media (prefers-color-scheme: dark) { 74 | :root{ 75 | --swappa-accent-color: swappa-accent-color; 76 | --swappa-primary-background-color: #FFFFFF; 77 | --swappa-light-background-color: #EEEEEE; 78 | --swappa-primary-line-color: #AAAAAA; 79 | } 80 | } 81 | } 82 | 83 | if SystemTheme == "Always" { 84 | :root{ 85 | --swappa-accent-color: swappa-accent-color; 86 | --swappa-primary-background-color: swappa-primary-background-color; 87 | --swappa-light-background-color: swappa-light-background-color; 88 | --swappa-dark-background-color: swappa-dark-background-color; 89 | --swappa-primary-text-color: swappa-primary-text-color; 90 | --swappa-primary-line-color: swappa-primary-line-color; 91 | } 92 | } 93 | /*=======END Set the colors based on system theme option=======*/ 94 | 95 | /*Top bar*/ 96 | .navbar-default{ 97 | background-color: var(--swappa-primary-background-color) !important; 98 | border: 1px solid var(--swappa-primary-line-color) !important; 99 | box-shadow: var(--swappa-box-shadow) !important; 100 | } 101 | 102 | /*Search Box*/ 103 | .navbar .form-control{ 104 | background-color: var(--swappa-light-background-color) !important; 105 | color: var(--swappa-primary-text-color) !important; 106 | } 107 | 108 | /*Search box dropdown*/ 109 | .dropdown-menu{ 110 | background-color: var(--swappa-light-background-color) !important; 111 | border: 1px solid var(--swappa-primary-line-color) !important; 112 | } 113 | .dropdown-menu > li > a{ 114 | color: var(--swappa-primary-text-color) !important; 115 | } 116 | .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > .a:focus, .dropdown-menu > li > a:hover{ 117 | background-color: var(--swappa-primary-background-color) !important; 118 | } 119 | 120 | /*Buttons*/ 121 | .btn-default{ 122 | background: var(--swappa-light-background-color) !important; 123 | color: var(--swappa-primary-text-color) !important; 124 | border: 1px solid var(--swappa-primary-line-color) !important; 125 | box-shadow: var(--swappa-box-shadow) !important; 126 | } 127 | .btn-primary, .btn-success{ 128 | background-color: var(--swappa-accent-color) !important; 129 | border-color: var(--swappa-accent-color) !important; 130 | } 131 | 132 | /*Main page background and text*/ 133 | body, .well{ 134 | background-color: var(--swappa-primary-background-color) !important; 135 | color: var(--swappa-primary-text-color) !important; 136 | } 137 | a{ 138 | color: var(--swappa-primary-text-color) !important; 139 | } 140 | 141 | /*Device pictures*/ 142 | .cell_product{ 143 | border: 1px solid var(--swappa-primary-line-color) !important; 144 | box-shadow: var(--swappa-box-shadow) !important; 145 | } 146 | 147 | /*Links*/ 148 | a:hover, a:focus, .listing_row a:hover{ 149 | text-decoration: none !important; 150 | color: var(--swappa-accent-color) !important; 151 | } 152 | .title_link, .row_cell_model .price, .listing_row a{ 153 | color: var(--swappa-primary-text-color) !important; 154 | } 155 | 156 | /*Other Text*/ 157 | .speclabel, .speclabel-platform, .speclabel-small{ 158 | color: var(--swappa-primary-text-color) 159 | } 160 | 161 | /*Recently sold text and prices*/ 162 | .price_marker_swappa{ 163 | color: var(--swappa-accent-color) !important; 164 | } 165 | 166 | /*Current listing price*/ 167 | .listing_price_active{ 168 | color: var(--swappa-accent-color) !important; 169 | } 170 | 171 | /*Navigation bar*/ 172 | .breadcrumb{ 173 | background-color: var(--swappa-dark-background-color) !important; 174 | border: 1px solid var(--swappa-primary-line-color) !important; 175 | box-shadow: var(--swappa-box-shadow) !important; 176 | } 177 | .breadcrumb > .active{ 178 | color: var(--swappa-primary-text-color) 179 | } 180 | 181 | /*Table headings*/ 182 | .table th{ 183 | background-color: var(--swappa-dark-background-color) !important; 184 | color: var(--swappa-primary-text-color) !important; 185 | } 186 | 187 | /*Listings of different models of one device and their prices*/ 188 | div.col-sm-6:hover{ 189 | box-shadow: var(--swappa-box-shadow) !important; 190 | } 191 | 192 | /*Number of comments*/ 193 | .badge, .active .badge, a.list-group-item.active > .badge, .nav-pills > .active > a > .badge{ 194 | background-color: var(--swappa-accent-color) !important; 195 | } 196 | 197 | /*Star icons*/ 198 | .text-success{ 199 | color: var(--swappa-accent-color) !important; 200 | } 201 | 202 | /*Random Lines*/ 203 | hr{ 204 | border-top: 1px solid var(--swappa-accent-color) !important; 205 | } 206 | .dropdown-menu .divider{ 207 | background-color: var(--swappa-primary-line-color) !important; 208 | } 209 | .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td{ 210 | border: 1px solid var(--swappa-primary-line-color) !important; 211 | } 212 | .nav-tabs{ 213 | border-bottom: 1px solid var(--swappa-primary-line-color) !important; 214 | } 215 | 216 | /*Login Page*/ 217 | .panel{ 218 | background-color: var(--swappa-primary-background-color) !important; 219 | color: var(--swappa-primary-text-color) !important; 220 | border: 1px solid var(--swappa-primary-line-color) !important; 221 | box-shadow: var(--swappa-box-shadow) !important; 222 | } 223 | .form-control{ 224 | background-color: var(--swappa-dark-background-color) !important; 225 | color: var(--swappa-primary-text-color) !important; 226 | border: 1px solid var(--swappa-primary-line-color) !important; 227 | } 228 | .btn-google, .btn-xda{ 229 | background-color: var(--swappa-light-background-color) !important; 230 | color: var(--swappa-primary-text-color) !important; 231 | } 232 | div.text-center:nth-child(3) > span:nth-child(1){ 233 | color: var(--swappa-primary-text-color) !important; 234 | } 235 | .btn-google img, .btn-xda img{ 236 | background: none !important; 237 | } 238 | 239 | /*My Swappa side navigation*/ 240 | .list-group .list-group-item{ 241 | background-color: var(--swappa-primary-background-color) !important; 242 | color: var(--swappa-primary-text-color) !important; 243 | border-color: var(--swappa-primary-line-color) !important; 244 | } 245 | 246 | /*My Profile Page*/ 247 | /*Panel headers and footers*/ 248 | .panel-heading, .panel-footer{ 249 | background-color: var(--swappa-dark-background-color) !important; 250 | color: var(--swappa-primary-text-color) !important; 251 | border-color: var(--swappa-primary-line-color) !important; 252 | } 253 | #id_email{ 254 | background-color: var(--swappa-dark-background-color) !important; 255 | } 256 | 257 | /*My Buying Tabs*/ 258 | #my-swappa-tabs > li.active > a, .nav-tabs > li.active > a:focus{ 259 | background-color: var(--swappa-light-background-color) !important; 260 | color: var(--swappa-primary-text-color) !important; 261 | border: 1px solid var(--swappa-primary-line-color) !important; 262 | } 263 | .nav-tabs > li > a{ 264 | color: var(--swappa-primary-text-color) 265 | } 266 | #my-swappa-tabs > li > a:hover, #my-swappa-tabs > li > a:focus{ 267 | background-color: var(--swappa-dark-background-color) !important; 268 | /*border: 1px solid transparent !important;*/ 269 | } 270 | 271 | /*Hide the site reviews widget at the bottom of the main page*/ 272 | .trustpilot-widget{ 273 | display: none !important; 274 | } 275 | 276 | /*Swappa Footer*/ 277 | footer, footer a{ 278 | background: var(--swappa-light-background-color) !important; 279 | color: var(--swappa-primary-text-color) !important; 280 | } 281 | 282 | /*Recolor some third party logos*/ 283 | /*#footer_logo,*/ 284 | #press_row .img-responsive{ 285 | filter: invert(80%) !important; 286 | } 287 | 288 | /*Overwrites the above*/ 289 | if swappa-box-shadow-check{ 290 | .navbar-default, .btn-default, .cell_product, .breadcrumb, div.col-sm-6:hover, .panel{ 291 | box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23) !important; 292 | } 293 | } 294 | 295 | } 296 | -------------------------------------------------------------------------------- /YouTubeMusic-Light.user.css: -------------------------------------------------------------------------------- 1 | /* ==UserStyle== 2 | @name YouTube Music - Light Style 3 | @namespace Devo7v 4 | @version 0.1.28 5 | @homepageURL https://github.com/Devo7v/UserCSS 6 | @supportURL https://github.com/Devo7v/UserCSS/issues 7 | @updateURL https://raw.githubusercontent.com/Devo7v/UserCSS/master/YouTubeMusic-Light.user.css 8 | @description Provides a light theme for YouTube Music 9 | @license CC-BY-NC-SA-4.0 10 | @author Devo7v 11 | 12 | @preprocessor stylus 13 | 14 | @var select ytmusic-branding "Branding"[ 15 | "YouTubeMusic", 16 | "GooglePlayMusic" 17 | ] 18 | 19 | @var select SystemTheme "Apply Style Under System Theme"[ 20 | "Light", 21 | "Dark" , 22 | "Always" 23 | ] 24 | 25 | @var color ytmusic-black-background "Adjust Dark Theme Background Color" #000000 26 | @var checkbox HideUpgrade "Hide Upgrade Links" 0 27 | 28 | ==/UserStyle== */ 29 | 30 | @-moz-document domain("music.youtube.com") { 31 | :root { 32 | /*COLOR SETTINGS*/ 33 | /*THESE ARE THE DEFAULT VALUES FOR THE WHITE THEME OF YOUTUBE*/ 34 | --yt-music-black-background: #030303 !important; 35 | --yt-music-grey-background: rgba(229,229,229,1) !important; /*It actually rgba(0,0,0,0.1) but this causes some transparency issues in various locations*/ 36 | --yt-music-white-background: rgba(255,255,255,1) !important; /*It actually rgba(255,255,255,0.98) but this causes some transparency issues in various locations*/ 37 | --yt-music-black-text: #030303 !important; 38 | --yt-music-white-text: #FFF !important; 39 | --yt-music-grey-text: #606060 !important; 40 | } 41 | 42 | 43 | /*SETS THE ACCENT COLOR BASED ON USER PREFERENCE*/ 44 | :root{ 45 | if ytmusic-branding == "YouTubeMusic"{ 46 | --yt-music-accent-color: #FF0000 !important; /*https://www.youtube.com/about/brand-resources/#logos-icons-colors*/ 47 | } 48 | else if ytmusic-branding == "GooglePlayMusic"{ 49 | --yt-music-accent-color: #FF5722 !important; /*https://play.google.com/intl/en_us/badges-music*/ 50 | } 51 | } 52 | 53 | /*SETS THE LOGO TO THE OLD GOOGLE PLAY MUSIC LOGO IF SELECTED BY THE USER*/ 54 | if ytmusic-branding == "GooglePlayMusic"{ 55 | ytmusic-nav-bar .left-content [aria-label=Home] { 56 | /*background: url(https://play-music.gstatic.com/fe/aa1d36d090084eb930e7980d07426111/play_music.svg);/**/ 57 | background-image: url("data:image/svg+xml;base64,77u/PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMTQgNDgiPjxnIGZpbGw9IiM3NTc1NzUiPjxwYXRoIGQ9Ik0xMi4zIDIwLjVjMC01LjQgNC42LTkuOCAxMC05LjggMyAwIDUuMSAxLjIgNi43IDIuN2wtMS45IDEuOWMtMS4yLTEuMS0yLjctMS45LTQuOC0xLjktNCAwLTcuMSAzLjItNy4xIDcuMnMzLjEgNy4yIDcuMSA3LjJjMi42IDAgNC0xIDUtMiAuOC0uOCAxLjMtMS45IDEuNS0zLjRoLTYuNHYtMi43aDljLjEuNS4xIDEuMS4xIDEuNyAwIDItLjYgNC41LTIuMyA2LjMtMS43IDEuOC0zLjkgMi44LTYuOSAyLjgtNS41LS4xLTEwLTQuNS0xMC0xMHpNMzguOCAxNy43Yy0zLjUgMC02LjQgMi43LTYuNCA2LjMgMCAzLjYgMi45IDYuMyA2LjQgNi4zIDMuNSAwIDYuNC0yLjcgNi40LTYuMy0uMS0zLjYtMi45LTYuMy02LjQtNi4zem0wIDEwLjJjLTEuOSAwLTMuNi0xLjYtMy42LTMuOCAwLTIuMyAxLjctMy44IDMuNi0zLjggMS45IDAgMy42IDEuNiAzLjYgMy44LS4xIDIuMi0xLjcgMy44LTMuNiAzLjh6TTUyLjYgMTcuN2MtMy41IDAtNi40IDIuNy02LjQgNi4zIDAgMy42IDIuOSA2LjMgNi40IDYuMyAzLjUgMCA2LjQtMi43IDYuNC02LjMgMC0zLjYtMi45LTYuMy02LjQtNi4zem0wIDEwLjJjLTEuOSAwLTMuNi0xLjYtMy42LTMuOCAwLTIuMyAxLjctMy44IDMuNi0zLjhzMy42IDEuNiAzLjYgMy44YzAgMi4yLTEuNyAzLjgtMy42IDMuOHpNNjkuNyAxOC4xdjFoLS4xYy0uNi0uNy0xLjgtMS40LTMuMy0xLjQtMy4yIDAtNi4xIDIuOC02LjEgNi40IDAgMy42IDIuOSA2LjMgNi4xIDYuMyAxLjUgMCAyLjctLjcgMy4zLTEuNGguMXYuOWMwIDIuNC0xLjMgMy43LTMuNCAzLjctMS43IDAtMi44LTEuMi0zLjItMi4zbC0yLjQgMWMuNyAxLjcgMi41IDMuNyA1LjYgMy43IDMuMyAwIDYtMS45IDYtNi42VjE4LjFoLTIuNnptLTMuMiA5LjhjLTEuOSAwLTMuNS0xLjYtMy41LTMuOCAwLTIuMiAxLjYtMy45IDMuNS0zLjlzMy40IDEuNiAzLjQgMy45Yy0uMSAyLjItMS41IDMuOC0zLjQgMy44ek03NC4yIDExLjRINzdWMzBoLTIuOHpNODQuNiAyNy45Yy0xLjQgMC0yLjQtLjYtMy4xLTEuOWw4LjUtMy41LS4zLS43Yy0uNS0xLjQtMi4xLTQtNS40LTQtMy4zIDAtNiAyLjYtNiA2LjMgMCAzLjYgMi43IDYuMyA2LjMgNi4zIDIuOSAwIDQuNi0xLjggNS4zLTIuOGwtMi4yLTEuNGMtLjcgMS0xLjcgMS43LTMuMSAxLjd6bS0uMi03LjdjMS4xIDAgMiAuNiAyLjQgMS4zbC01LjcgMi40Yy0uMS0yLjUgMS45LTMuNyAzLjMtMy43eiIvPjwvZz48cGF0aCBmaWxsPSJub25lIiBkPSJNMTIuMSAxMC43aDc4djI1LjVoLTc4eiIvPjxwYXRoIGZpbGw9Im5vbmUiIGQ9Ik0xMi4xIDEwLjdoMTg5Ljh2MjUuNUgxMi4xeiIvPjxnIGZpbGw9IiNGRjU3MjIiPjxwYXRoIGQ9Ik0xNDMuNyAxMi44aDIuMmw2IDEwLjVoLjFsNi0xMC41aDIuMlYzMEgxNThWMTkuOGwuMS0yLjloLS4xbC01LjQgOS40aC0xLjNsLTUuNC05LjRoLS4xbC4xIDIuOVYzMGgtMi4yVjEyLjh6TTE3MS4zIDMwdi0xLjZoLS4xYy0uNiAxLjEtMi4xIDItMy43IDItMyAwLTQuNS0yLTQuNS00Ljl2LTcuMmgyLjJ2Ni44YzAgMi40IDEuMiAzLjMgMi45IDMuMyAxLjkgMCAzLjEtMS44IDMuMS0zLjZ2LTYuNWgyLjJWMzBoLTIuMXpNMTc0LjkgMjdsMi0uOGMuNiAxLjUgMS44IDIuMiAzLjIgMi4yIDEuNCAwIDIuNC0uNyAyLjQtMS43IDAtLjYtLjQtMS4yLTEuNi0xLjZsLTIuNC0uNmMtMS4xLS4zLTMuMS0xLjItMy4xLTMuMyAwLTIuMSAyLjItMy41IDQuNy0zLjUgMiAwIDMuOC45IDQuNSAyLjdsLTEuOS44Yy0uNS0xLjEtMS41LTEuNi0yLjctMS42LTEuMiAwLTIuMy42LTIuMyAxLjUgMCAuNy42IDEuMiAxLjYgMS40bDIuMy42YzIuMy42IDMuMiAyIDMuMiAzLjQgMCAyLjEtMS45IDMuNy00LjYgMy43LTMgLjItNC42LTEuNS01LjMtMy4yek0xODYgMTQuMmMwLS45LjctMS42IDEuNi0xLjYuOSAwIDEuNi43IDEuNiAxLjYgMCAuOS0uNyAxLjYtMS42IDEuNi0uOS0uMS0xLjYtLjgtMS42LTEuNnptLjQgMTUuOFYxOC4yaDIuMlYzMGgtMi4yek0xOTAuNSAyNC4xYzAtMy42IDIuNS02LjMgNi02LjMgMi44IDAgNC40IDEuNyA1LjIgMy40bC0yIC44Yy0uNi0xLjQtMS43LTIuMi0zLjMtMi4yLTEuOSAwLTMuNyAxLjctMy43IDQuMnMxLjggNC4yIDMuNyA0LjJjMS42IDAgMi44LS44IDMuNC0yLjJsMiAuOGMtLjcgMS43LTIuNCAzLjQtNS4yIDMuNC0zLjYuMi02LjEtMi41LTYuMS02LjF6Ii8+PC9nPjxnIGZpbGw9IiM3NTc1NzUiPjxwYXRoIGQ9Ik0xMDIuMyAxMS40aC02LjdWMzBoMi44di03LjFoMy45YzMuMSAwIDYuMS0yLjIgNi4xLTUuOHMtMy4xLTUuNy02LjEtNS43em0wIDloLTRWMTRoNGMyLjEgMCAzLjMgMS43IDMuMyAzLjIgMCAxLjQtMS4yIDMuMi0zLjMgMy4yek0xMTIuNyAzMFYxMS40aC0yLjhWMzBoMi44ek0xMjUuMiAzMHYtNy4xYzAtMy4zLTIuNS01LjItNS43LTUuMi0yIDAtNC4xLjktNSAyLjlsMi41IDFjLjUtMSAxLjUtMS40IDIuNS0xLjQgMS40IDAgMi45LjkgMi45IDIuNHYuMmMtLjUtLjMtMS42LS43LTIuOS0uNy0yLjcgMC01LjQgMS41LTUuNCA0LjIgMCAyLjUgMi4yIDQuMSA0LjYgNC4xIDEuOSAwIDIuOS0uOCAzLjUtMS44aC4xVjMwaDIuOXptLTYtMi4xYy0uOSAwLTIuMi0uNS0yLjItMS42IDAtMS40IDEuNi0yIDIuOS0yIDEuMiAwIDEuOC4zIDIuNS42LS4xIDEuOC0xLjYgMy0zLjIgM3pNMTM0LjkgMTguMWwtMy4yIDguMWgtLjFsLTMuMy04LjFoLTNsNSAxMS4zLTIuOCA2LjNoMi45bDcuNi0xNy42aC0zLjF6Ii8+PC9nPjxwYXRoIGZpbGw9Im5vbmUiIGQ9Ik0uMSAwaDIxMy44djQ4SC4xeiIvPjwvc3ZnPg==");/**/ 58 | width: 170px; 59 | height: 24px; 60 | } 61 | ytmusic-nav-bar .left-content [aria-label=Home] picture { 62 | display: none !important; 63 | } 64 | } 65 | 66 | if SystemTheme == "Light" { 67 | @media (prefers-color-scheme: light) { 68 | :root{ 69 | /*EXISTING YOUTUBE MUSIC VARIABLES*/ 70 | --yt-spec-text-primary: var(--yt-music-black-text) !important; 71 | --yt-spec-text-secondary: var(--yt-music-grey-text) !important; 72 | --yt-spec-call-to-action: var(--yt-music-grey-text) !important; 73 | --yt-spec-icon-inactive: var(--yt-music-white-text) !important; 74 | --yt-spec-static-brand-white: var(--yt-music-black-background) !important; 75 | --yt-endpoint-color: var(--yt-music-grey-text) !important; 76 | --yt-compact-link-icon-color: var(--yt-music-white-text) !important; 77 | --ytmusic-overlay-text-secondary: var(--yt-music-grey-text) !important; 78 | --ytmusic-nav-bar: var(--yt-music-white-background) !important; 79 | --ytmusic-color-black1: var(--yt-music-grey-background) !important; 80 | --ytmusic-text-primary: var(--yt-music-black-text) !important; 81 | --ytmusic-menu-item-text_-_color: var(--yt-music-white-text) !important; 82 | --ytmusic-subtitle-1_-_color: var(--yt-spec-text-secondary) !important; 83 | --ytmusic-subtitle-1_-_--yt-endpoint-color: var(--yt-spec-text-secondary) !important; 84 | --ytmusic-subtitle-1_-_--yt-endpoint-hover-color: var(--yt-spec-text-secondary) !important; 85 | --ytmusic-subtitle-1_-_--yt-endpoint-visited-color: var(--yt-spec-text-secondary) !important; 86 | --ytmusic-menu-item-hover-background-color: rgba(0,0,0,0.1) !important; 87 | --ytmusic-av-toggle-active: rgba(0,0,0,0.1) !important; 88 | 89 | /*VARIABLES CREATED FOR THE STYLE*/ 90 | --yt-music-background: var(--yt-music-white-background); 91 | --yt-music-border-color: rgba(0,0,0,0.1); 92 | } 93 | 94 | /*SETS THE LOGO TO A DARK TEXT VERSION OF THE YOUTUBE MUSIC LOGO IF SELECTED BY THE USER*/ 95 | if ytmusic-branding == "YouTubeMusic"{ 96 | ytmusic-nav-bar .left-content [aria-label=Home] { 97 | /*background: url(https://cdn.freelogovectors.net/wp-content/uploads/2020/11/youtube-music-logo.png);/**/ 98 | background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgd2lkdGg9IjgwIgogICBoZWlnaHQ9IjI0IgogICBmaWxsPSJub25lIgogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmcyNyIKICAgc29kaXBvZGk6ZG9jbmFtZT0ib25fcGxhdGZvcm1fbG9nb19saWdodC5zdmciCiAgIGlua3NjYXBlOnZlcnNpb249IjEuMSAoYzY4ZTIyYzM4NywgMjAyMS0wNS0yMykiCiAgIHhtbG5zOmlua3NjYXBlPSJodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy9uYW1lc3BhY2VzL2lua3NjYXBlIgogICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGRlZnMKICAgICBpZD0iZGVmczMxIiAvPgogIDxzb2RpcG9kaTpuYW1lZHZpZXcKICAgICBpZD0ibmFtZWR2aWV3MjkiCiAgICAgcGFnZWNvbG9yPSIjNTA1MDUwIgogICAgIGJvcmRlcmNvbG9yPSIjZWVlZWVlIgogICAgIGJvcmRlcm9wYWNpdHk9IjEiCiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMCIKICAgICBpbmtzY2FwZTpwYWdlb3BhY2l0eT0iMCIKICAgICBpbmtzY2FwZTpwYWdlY2hlY2tlcmJvYXJkPSIwIgogICAgIHNob3dncmlkPSJmYWxzZSIKICAgICBpbmtzY2FwZTp6b29tPSIyMS4zMzc1IgogICAgIGlua3NjYXBlOmN4PSIyMS40NDExMjUiCiAgICAgaW5rc2NhcGU6Y3k9IjEyLjAyMTA5IgogICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTkyMCIKICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSIxMDExIgogICAgIGlua3NjYXBlOndpbmRvdy14PSItOCIKICAgICBpbmtzY2FwZTp3aW5kb3cteT0iLTgiCiAgICAgaW5rc2NhcGU6d2luZG93LW1heGltaXplZD0iMSIKICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmcyNyIgLz4KICA8ZWxsaXBzZQogICAgIGN4PSIxMi4xOCIKICAgICBjeT0iMTIiCiAgICAgcng9IjEyLjE4IgogICAgIHJ5PSIxMiIKICAgICBmaWxsPSJyZWQiCiAgICAgaWQ9ImVsbGlwc2UyMSIgLz4KICA8ZWxsaXBzZQogICAgIGN4PSIxMi4xOCIKICAgICBjeT0iMTIiCiAgICAgcng9IjcuMzA4IgogICAgIHJ5PSI3LjIiCiAgICAgZmlsbD0icmVkIgogICAgIHN0cm9rZT0iI2ZmZiIKICAgICBzdHJva2Utd2lkdGg9IjEuMiIKICAgICBpZD0iZWxsaXBzZTIzIiAvPgogIDxwYXRoCiAgICAgZD0iTSA5Ljc0NCwxNS41NDUgMTYuMDcxLDEyLjAwMSA5Ljc0NCw4LjQ1NSBaIgogICAgIGZpbGw9IiNmZmZmZmYiCiAgICAgaWQ9InBhdGgyNSIKICAgICBzb2RpcG9kaTpub2RldHlwZXM9ImNjY2MiIC8+CiAgPHBhdGgKICAgICBkPSJNIDM3LjQzMyw5LjY0MjAwMDUgQyAzNi44NTQsMTIuNDk1IDM2LjQxNCwxNS45NzggMzYuMTgzLDE3LjQxNiBIIDM2LjAyIEMgMzUuODMzLDE1LjkzNCAzNS4zOTMsMTIuNDc0IDM0Ljc5Myw5LjY2NjAwMDUgTCAzMy4zMSwyLjY3NzAwMSBIIDI4Ljc5IFYgMjEuNTI3IGggMi44MDMgViA1Ljk4NzAwMSBsIDAuMjc3LDEuNDUxIDIuODUsMTQuMDg1OTk5IGggMi44MDQgbCAyLjgwMywtMTQuMDg1OTk5IDAuMywtMS40NTkgViAyMS41MjYgaCAyLjgwNCBWIDIuNjc2MDAxIEggMzguODY4IFogTSA1MS4wMSwxOC42OTYgYyAtMC4yNTYsMC41MTcgLTAuODEsMC44NzYgLTEuMzY4LDAuODc2IC0wLjY0OCwwIC0wLjkwNCwtMC40OTQgLTAuOTA0LC0xLjcwNiBWIDcuNzU0MDAxIEggNDUuNTQgViAxOC4wNDQgYyAwLDIuNTQgMC44NTYsMy43MDYgMi43NTgsMy43MDYgMS4yOTYsMCAyLjMzOCwtMC41NjIgMy4wNTgsLTEuOTA5IGggMC4wNyBsIDAuMjc3LDEuNjg0IGggMi41MDIgViA3Ljc1NTAwMSBIIDUxLjAwNyBWIDE4LjY5NSBoIDAuMDAzIHogbSA5LjM4MiwtNS41MDYgYyAtMS4wNDMsLTAuNzQyIC0xLjY5MSwtMS4yMzYgLTEuNjkxLC0yLjMxNCAwLC0wLjc2Mjk5OSAwLjM3LC0xLjE4OTk5OTUgMS4yNSwtMS4xODk5OTk1IDAuOTA1LDAgMS4yMDYsMC42MDQ5OTk1IDEuMjI3LDIuNjczOTk5NSBsIDIuNjg5LC0wLjExMSBjIDAuMjA4LC0zLjM0NTk5OSAtMC45MjgsLTQuNzM5OTk5IC0zLjg3LC00LjczOTk5OSAtMi43MzMsMCAtNC4wNzgsMS4xOSAtNC4wNzgsMy42Mzc5OTkgMCwyLjIyNCAxLjExMywzLjIzNSAyLjkyLDQuNTYyIDEuNTUzLDEuMTY5IDIuNDU3LDEuODIgMi40NTcsMi43NjQgMCwwLjcyIC0wLjQ2NCwxLjIxMyAtMS4yNzUsMS4yMTMgLTAuOTUsMCAtMS41MDcsLTAuODc3IC0xLjM2NSwtMi40MDUgbCAtMi43MSwwLjA0NCBjIC0wLjQxOSwyLjg1MiAwLjc2Niw0LjUxNSAzLjkxNSw0LjUxNSAyLjc1OCwwIDQuMTk1LC0xLjIzNiA0LjE5NSwtMy43MDYgLTAuMDAzLC0yLjI0NyAtMS4xNiwtMy4xNDcgLTMuNjY0LC00Ljk0NCB6IG0gOC40OCwtNS40MzU5OTkgSCA2NS44MTMgViAyMS41MjQgaCAzLjA2IFYgNy43NTUwMDEgWiBtIC0xLjUwNywtNS40MzggYyAtMS4xOCwwIC0xLjczOCwwLjQyNyAtMS43MzgsMS45MTEgMCwxLjUyOCAwLjU1NCwxLjkwOSAxLjczOSwxLjkwOSAxLjIwNSwwIDEuNzM4LC0wLjM4MyAxLjczOCwtMS45MDkgMCwtMS40MTQgLTAuNTMzLC0xLjkxMSAtMS43MzksLTEuOTExIHogTSA3OS4xNTgsMTYuNTYgNzYuMzU1LDE2LjQyNSBjIDAsMi40MjYgLTAuMjc3LDMuMjEyIC0xLjIyNiwzLjIxMiAtMC45NSwwIC0xLjExMywtMC44NzcgLTEuMTEzLC0zLjczIHYgLTIuNjcgYyAwLC0yLjc2NDk5OSAwLjE4NywtMy42Mzg5OTk1IDEuMTM3LC0zLjYzODk5OTUgMC44OCwwIDEuMTEyLDAuODMwMDAwNSAxLjExMiwzLjM5Mjk5OTUgbCAyLjc3OCwtMC4xNzggQyA3OS4yMywxMC42NzkgNzguOTUsOS4yMTgwMDA1IDc4LjA5NCw4LjM4ODAwMSBjIC0wLjYyNywtMC42MDggLTEuNTc2LC0wLjg5NyAtMi44OTYsLTAuODk3IC0zLjEwNCwwIC00LjM3OSwxLjYxOCAtNC4zNzksNi4xNTM5OTkgdiAxLjkzMiBjIDAsNC42NzMgMS4wODgsNi4xNzggNC4yNjQsNi4xNzggMS4zNDQsMCAyLjI3LC0wLjI3IDIuODk2LC0wLjg1NCAwLjkwMiwtMC44MTQgMS4yNDksLTIuMjA1IDEuMTgsLTQuMzQxIHoiCiAgICAgZmlsbD0iI2ZmZmZmZiIKICAgICBpZD0icGF0aDI1LTMiCiAgICAgc29kaXBvZGk6bm9kZXR5cGVzPSJjY2NjY2NjY2NjY2NjY2NjY2NjY3NzY2Nzc2NjY2NjY2NjY2Nzc2Njc3Njc3NjY3NjY2NjY2NjY3Nzc3NzY2Nzc3NzY2Njc3Nzc2NjYyIKICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eToxIiAvPgo8L3N2Zz4K");/**/ 99 | width: 64px; 100 | height: 8px; 101 | } 102 | } 103 | img.logo { 104 | display: none !important; 105 | } 106 | } 107 | @media (prefers-color-scheme: dark) { 108 | :root { 109 | --yt-music-background: ytmusic-black-background !important; 110 | --yt-music-border-color: rgba(255,255,255,0.1) !important; 111 | } 112 | } 113 | } 114 | 115 | if SystemTheme == "Dark" { 116 | @media (prefers-color-scheme: dark) { 117 | :root{ 118 | /*EXISTING YOUTUBE MUSIC VARIABLES*/ 119 | --yt-spec-text-primary: var(--yt-music-black-text) !important; 120 | --yt-spec-text-secondary: var(--yt-music-grey-text) !important; 121 | --yt-spec-call-to-action: var(--yt-music-grey-text) !important; 122 | --yt-spec-icon-inactive: var(--yt-music-white-text) !important; 123 | --yt-spec-static-brand-white: var(--yt-music-black-background) !important; 124 | --yt-endpoint-color: var(--yt-music-grey-text) !important; 125 | --yt-compact-link-icon-color: var(--yt-music-white-text) !important; 126 | --ytmusic-overlay-text-secondary: var(--yt-music-grey-text) !important; 127 | --ytmusic-nav-bar: var(--yt-music-white-background) !important; 128 | --ytmusic-color-black1: var(--yt-music-grey-background) !important; 129 | --ytmusic-text-primary: var(--yt-music-black-text) !important; 130 | --ytmusic-menu-item-text_-_color: var(--yt-music-white-text) !important; 131 | --ytmusic-subtitle-1_-_color: var(--yt-spec-text-secondary) !important; 132 | --ytmusic-subtitle-1_-_--yt-endpoint-color: var(--yt-spec-text-secondary) !important; 133 | --ytmusic-subtitle-1_-_--yt-endpoint-hover-color: var(--yt-spec-text-secondary) !important; 134 | --ytmusic-subtitle-1_-_--yt-endpoint-visited-color: var(--yt-spec-text-secondary) !important; 135 | --ytmusic-menu-item-hover-background-color: rgba(0,0,0,0.1) !important; 136 | --ytmusic-av-toggle-active: rgba(0,0,0,0.1) !important; 137 | 138 | /*VARIABLES CREATED FOR THE STYLE*/ 139 | --yt-music-background: var(--yt-music-white-background); 140 | --yt-music-border-color: rgba(0,0,0,0.1); 141 | } 142 | 143 | /*SETS THE LOGO TO A DARK TEXT VERSION OF THE YOUTUBE MUSIC LOGO IF SELECTED BY THE USER*/ 144 | if ytmusic-branding == "YouTubeMusic"{ 145 | ytmusic-nav-bar .left-content [aria-label=Home] { 146 | /*background: url(https://cdn.freelogovectors.net/wp-content/uploads/2020/11/youtube-music-logo.png);/**/ 147 | background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgd2lkdGg9IjgwIgogICBoZWlnaHQ9IjI0IgogICBmaWxsPSJub25lIgogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmcyNyIKICAgc29kaXBvZGk6ZG9jbmFtZT0ib25fcGxhdGZvcm1fbG9nb19saWdodC5zdmciCiAgIGlua3NjYXBlOnZlcnNpb249IjEuMSAoYzY4ZTIyYzM4NywgMjAyMS0wNS0yMykiCiAgIHhtbG5zOmlua3NjYXBlPSJodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy9uYW1lc3BhY2VzL2lua3NjYXBlIgogICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGRlZnMKICAgICBpZD0iZGVmczMxIiAvPgogIDxzb2RpcG9kaTpuYW1lZHZpZXcKICAgICBpZD0ibmFtZWR2aWV3MjkiCiAgICAgcGFnZWNvbG9yPSIjNTA1MDUwIgogICAgIGJvcmRlcmNvbG9yPSIjZWVlZWVlIgogICAgIGJvcmRlcm9wYWNpdHk9IjEiCiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMCIKICAgICBpbmtzY2FwZTpwYWdlb3BhY2l0eT0iMCIKICAgICBpbmtzY2FwZTpwYWdlY2hlY2tlcmJvYXJkPSIwIgogICAgIHNob3dncmlkPSJmYWxzZSIKICAgICBpbmtzY2FwZTp6b29tPSIyMS4zMzc1IgogICAgIGlua3NjYXBlOmN4PSIyMS40NDExMjUiCiAgICAgaW5rc2NhcGU6Y3k9IjEyLjAyMTA5IgogICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTkyMCIKICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSIxMDExIgogICAgIGlua3NjYXBlOndpbmRvdy14PSItOCIKICAgICBpbmtzY2FwZTp3aW5kb3cteT0iLTgiCiAgICAgaW5rc2NhcGU6d2luZG93LW1heGltaXplZD0iMSIKICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmcyNyIgLz4KICA8ZWxsaXBzZQogICAgIGN4PSIxMi4xOCIKICAgICBjeT0iMTIiCiAgICAgcng9IjEyLjE4IgogICAgIHJ5PSIxMiIKICAgICBmaWxsPSJyZWQiCiAgICAgaWQ9ImVsbGlwc2UyMSIgLz4KICA8ZWxsaXBzZQogICAgIGN4PSIxMi4xOCIKICAgICBjeT0iMTIiCiAgICAgcng9IjcuMzA4IgogICAgIHJ5PSI3LjIiCiAgICAgZmlsbD0icmVkIgogICAgIHN0cm9rZT0iI2ZmZiIKICAgICBzdHJva2Utd2lkdGg9IjEuMiIKICAgICBpZD0iZWxsaXBzZTIzIiAvPgogIDxwYXRoCiAgICAgZD0iTSA5Ljc0NCwxNS41NDUgMTYuMDcxLDEyLjAwMSA5Ljc0NCw4LjQ1NSBaIgogICAgIGZpbGw9IiNmZmZmZmYiCiAgICAgaWQ9InBhdGgyNSIKICAgICBzb2RpcG9kaTpub2RldHlwZXM9ImNjY2MiIC8+CiAgPHBhdGgKICAgICBkPSJNIDM3LjQzMyw5LjY0MjAwMDUgQyAzNi44NTQsMTIuNDk1IDM2LjQxNCwxNS45NzggMzYuMTgzLDE3LjQxNiBIIDM2LjAyIEMgMzUuODMzLDE1LjkzNCAzNS4zOTMsMTIuNDc0IDM0Ljc5Myw5LjY2NjAwMDUgTCAzMy4zMSwyLjY3NzAwMSBIIDI4Ljc5IFYgMjEuNTI3IGggMi44MDMgViA1Ljk4NzAwMSBsIDAuMjc3LDEuNDUxIDIuODUsMTQuMDg1OTk5IGggMi44MDQgbCAyLjgwMywtMTQuMDg1OTk5IDAuMywtMS40NTkgViAyMS41MjYgaCAyLjgwNCBWIDIuNjc2MDAxIEggMzguODY4IFogTSA1MS4wMSwxOC42OTYgYyAtMC4yNTYsMC41MTcgLTAuODEsMC44NzYgLTEuMzY4LDAuODc2IC0wLjY0OCwwIC0wLjkwNCwtMC40OTQgLTAuOTA0LC0xLjcwNiBWIDcuNzU0MDAxIEggNDUuNTQgViAxOC4wNDQgYyAwLDIuNTQgMC44NTYsMy43MDYgMi43NTgsMy43MDYgMS4yOTYsMCAyLjMzOCwtMC41NjIgMy4wNTgsLTEuOTA5IGggMC4wNyBsIDAuMjc3LDEuNjg0IGggMi41MDIgViA3Ljc1NTAwMSBIIDUxLjAwNyBWIDE4LjY5NSBoIDAuMDAzIHogbSA5LjM4MiwtNS41MDYgYyAtMS4wNDMsLTAuNzQyIC0xLjY5MSwtMS4yMzYgLTEuNjkxLC0yLjMxNCAwLC0wLjc2Mjk5OSAwLjM3LC0xLjE4OTk5OTUgMS4yNSwtMS4xODk5OTk1IDAuOTA1LDAgMS4yMDYsMC42MDQ5OTk1IDEuMjI3LDIuNjczOTk5NSBsIDIuNjg5LC0wLjExMSBjIDAuMjA4LC0zLjM0NTk5OSAtMC45MjgsLTQuNzM5OTk5IC0zLjg3LC00LjczOTk5OSAtMi43MzMsMCAtNC4wNzgsMS4xOSAtNC4wNzgsMy42Mzc5OTkgMCwyLjIyNCAxLjExMywzLjIzNSAyLjkyLDQuNTYyIDEuNTUzLDEuMTY5IDIuNDU3LDEuODIgMi40NTcsMi43NjQgMCwwLjcyIC0wLjQ2NCwxLjIxMyAtMS4yNzUsMS4yMTMgLTAuOTUsMCAtMS41MDcsLTAuODc3IC0xLjM2NSwtMi40MDUgbCAtMi43MSwwLjA0NCBjIC0wLjQxOSwyLjg1MiAwLjc2Niw0LjUxNSAzLjkxNSw0LjUxNSAyLjc1OCwwIDQuMTk1LC0xLjIzNiA0LjE5NSwtMy43MDYgLTAuMDAzLC0yLjI0NyAtMS4xNiwtMy4xNDcgLTMuNjY0LC00Ljk0NCB6IG0gOC40OCwtNS40MzU5OTkgSCA2NS44MTMgViAyMS41MjQgaCAzLjA2IFYgNy43NTUwMDEgWiBtIC0xLjUwNywtNS40MzggYyAtMS4xOCwwIC0xLjczOCwwLjQyNyAtMS43MzgsMS45MTEgMCwxLjUyOCAwLjU1NCwxLjkwOSAxLjczOSwxLjkwOSAxLjIwNSwwIDEuNzM4LC0wLjM4MyAxLjczOCwtMS45MDkgMCwtMS40MTQgLTAuNTMzLC0xLjkxMSAtMS43MzksLTEuOTExIHogTSA3OS4xNTgsMTYuNTYgNzYuMzU1LDE2LjQyNSBjIDAsMi40MjYgLTAuMjc3LDMuMjEyIC0xLjIyNiwzLjIxMiAtMC45NSwwIC0xLjExMywtMC44NzcgLTEuMTEzLC0zLjczIHYgLTIuNjcgYyAwLC0yLjc2NDk5OSAwLjE4NywtMy42Mzg5OTk1IDEuMTM3LC0zLjYzODk5OTUgMC44OCwwIDEuMTEyLDAuODMwMDAwNSAxLjExMiwzLjM5Mjk5OTUgbCAyLjc3OCwtMC4xNzggQyA3OS4yMywxMC42NzkgNzguOTUsOS4yMTgwMDA1IDc4LjA5NCw4LjM4ODAwMSBjIC0wLjYyNywtMC42MDggLTEuNTc2LC0wLjg5NyAtMi44OTYsLTAuODk3IC0zLjEwNCwwIC00LjM3OSwxLjYxOCAtNC4zNzksNi4xNTM5OTkgdiAxLjkzMiBjIDAsNC42NzMgMS4wODgsNi4xNzggNC4yNjQsNi4xNzggMS4zNDQsMCAyLjI3LC0wLjI3IDIuODk2LC0wLjg1NCAwLjkwMiwtMC44MTQgMS4yNDksLTIuMjA1IDEuMTgsLTQuMzQxIHoiCiAgICAgZmlsbD0iI2ZmZmZmZiIKICAgICBpZD0icGF0aDI1LTMiCiAgICAgc29kaXBvZGk6bm9kZXR5cGVzPSJjY2NjY2NjY2NjY2NjY2NjY2NjY3NzY2Nzc2NjY2NjY2NjY2Nzc2Njc3Njc3NjY3NjY2NjY2NjY3Nzc3NzY2Nzc3NzY2Njc3Nzc2NjYyIKICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eToxIiAvPgo8L3N2Zz4K");/**/ 148 | width: 64px; 149 | height: 8px; 150 | } 151 | } 152 | img.logo { 153 | display: none !important; 154 | } 155 | } 156 | @media (prefers-color-scheme: light) { 157 | :root { 158 | --yt-music-background: ytmusic-black-background !important; 159 | --yt-music-border-color: rgba(255,255,255,0.1) !important; 160 | } 161 | } 162 | } 163 | 164 | if SystemTheme == "Always" { 165 | 166 | :root{ 167 | /*EXISTING YOUTUBE MUSIC VARIABLES*/ 168 | --yt-spec-text-primary: var(--yt-music-black-text) !important; 169 | --yt-spec-text-secondary: var(--yt-music-grey-text) !important; 170 | --yt-spec-call-to-action: var(--yt-music-grey-text) !important; 171 | --yt-spec-icon-inactive: var(--yt-music-white-text) !important; 172 | --yt-spec-static-brand-white: var(--yt-music-black-background) !important; 173 | --yt-endpoint-color: var(--yt-music-grey-text) !important; 174 | --yt-compact-link-icon-color: var(--yt-music-white-text) !important; 175 | --ytmusic-overlay-text-secondary: var(--yt-music-grey-text) !important; 176 | --ytmusic-nav-bar: var(--yt-music-white-background) !important; 177 | --ytmusic-color-black1: var(--yt-music-grey-background) !important; 178 | --ytmusic-text-primary: var(--yt-music-black-text) !important; 179 | --ytmusic-menu-item-text_-_color: var(--yt-music-white-text) !important; 180 | --ytmusic-subtitle-1_-_color: var(--yt-spec-text-secondary) !important; 181 | --ytmusic-subtitle-1_-_--yt-endpoint-color: var(--yt-spec-text-secondary) !important; 182 | --ytmusic-subtitle-1_-_--yt-endpoint-hover-color: var(--yt-spec-text-secondary) !important; 183 | --ytmusic-subtitle-1_-_--yt-endpoint-visited-color: var(--yt-spec-text-secondary) !important; 184 | --ytmusic-menu-item-hover-background-color: rgba(0,0,0,0.1) !important; 185 | --ytmusic-av-toggle-active: rgba(0,0,0,0.1) !important; 186 | 187 | /*VARIABLES CREATED FOR THE STYLE*/ 188 | --yt-music-background: var(--yt-music-white-background); 189 | --yt-music-border-color: rgba(0,0,0,0.1); 190 | } 191 | 192 | /*SETS THE LOGO TO A DARK TEXT VERSION OF THE YOUTUBE MUSIC LOGO IF SELECTED BY THE USER*/ 193 | if ytmusic-branding == "YouTubeMusic"{ 194 | ytmusic-nav-bar .left-content [aria-label=Home] { 195 | /*background: url(https://cdn.freelogovectors.net/wp-content/uploads/2020/11/youtube-music-logo.png);/**/ 196 | background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgd2lkdGg9IjgwIgogICBoZWlnaHQ9IjI0IgogICBmaWxsPSJub25lIgogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmcyNyIKICAgc29kaXBvZGk6ZG9jbmFtZT0ib25fcGxhdGZvcm1fbG9nb19saWdodC5zdmciCiAgIGlua3NjYXBlOnZlcnNpb249IjEuMSAoYzY4ZTIyYzM4NywgMjAyMS0wNS0yMykiCiAgIHhtbG5zOmlua3NjYXBlPSJodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy9uYW1lc3BhY2VzL2lua3NjYXBlIgogICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c3ZnPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPGRlZnMKICAgICBpZD0iZGVmczMxIiAvPgogIDxzb2RpcG9kaTpuYW1lZHZpZXcKICAgICBpZD0ibmFtZWR2aWV3MjkiCiAgICAgcGFnZWNvbG9yPSIjNTA1MDUwIgogICAgIGJvcmRlcmNvbG9yPSIjZWVlZWVlIgogICAgIGJvcmRlcm9wYWNpdHk9IjEiCiAgICAgaW5rc2NhcGU6cGFnZXNoYWRvdz0iMCIKICAgICBpbmtzY2FwZTpwYWdlb3BhY2l0eT0iMCIKICAgICBpbmtzY2FwZTpwYWdlY2hlY2tlcmJvYXJkPSIwIgogICAgIHNob3dncmlkPSJmYWxzZSIKICAgICBpbmtzY2FwZTp6b29tPSIyMS4zMzc1IgogICAgIGlua3NjYXBlOmN4PSIyMS40NDExMjUiCiAgICAgaW5rc2NhcGU6Y3k9IjEyLjAyMTA5IgogICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTkyMCIKICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSIxMDExIgogICAgIGlua3NjYXBlOndpbmRvdy14PSItOCIKICAgICBpbmtzY2FwZTp3aW5kb3cteT0iLTgiCiAgICAgaW5rc2NhcGU6d2luZG93LW1heGltaXplZD0iMSIKICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJzdmcyNyIgLz4KICA8ZWxsaXBzZQogICAgIGN4PSIxMi4xOCIKICAgICBjeT0iMTIiCiAgICAgcng9IjEyLjE4IgogICAgIHJ5PSIxMiIKICAgICBmaWxsPSJyZWQiCiAgICAgaWQ9ImVsbGlwc2UyMSIgLz4KICA8ZWxsaXBzZQogICAgIGN4PSIxMi4xOCIKICAgICBjeT0iMTIiCiAgICAgcng9IjcuMzA4IgogICAgIHJ5PSI3LjIiCiAgICAgZmlsbD0icmVkIgogICAgIHN0cm9rZT0iI2ZmZiIKICAgICBzdHJva2Utd2lkdGg9IjEuMiIKICAgICBpZD0iZWxsaXBzZTIzIiAvPgogIDxwYXRoCiAgICAgZD0iTSA5Ljc0NCwxNS41NDUgMTYuMDcxLDEyLjAwMSA5Ljc0NCw4LjQ1NSBaIgogICAgIGZpbGw9IiNmZmZmZmYiCiAgICAgaWQ9InBhdGgyNSIKICAgICBzb2RpcG9kaTpub2RldHlwZXM9ImNjY2MiIC8+CiAgPHBhdGgKICAgICBkPSJNIDM3LjQzMyw5LjY0MjAwMDUgQyAzNi44NTQsMTIuNDk1IDM2LjQxNCwxNS45NzggMzYuMTgzLDE3LjQxNiBIIDM2LjAyIEMgMzUuODMzLDE1LjkzNCAzNS4zOTMsMTIuNDc0IDM0Ljc5Myw5LjY2NjAwMDUgTCAzMy4zMSwyLjY3NzAwMSBIIDI4Ljc5IFYgMjEuNTI3IGggMi44MDMgViA1Ljk4NzAwMSBsIDAuMjc3LDEuNDUxIDIuODUsMTQuMDg1OTk5IGggMi44MDQgbCAyLjgwMywtMTQuMDg1OTk5IDAuMywtMS40NTkgViAyMS41MjYgaCAyLjgwNCBWIDIuNjc2MDAxIEggMzguODY4IFogTSA1MS4wMSwxOC42OTYgYyAtMC4yNTYsMC41MTcgLTAuODEsMC44NzYgLTEuMzY4LDAuODc2IC0wLjY0OCwwIC0wLjkwNCwtMC40OTQgLTAuOTA0LC0xLjcwNiBWIDcuNzU0MDAxIEggNDUuNTQgViAxOC4wNDQgYyAwLDIuNTQgMC44NTYsMy43MDYgMi43NTgsMy43MDYgMS4yOTYsMCAyLjMzOCwtMC41NjIgMy4wNTgsLTEuOTA5IGggMC4wNyBsIDAuMjc3LDEuNjg0IGggMi41MDIgViA3Ljc1NTAwMSBIIDUxLjAwNyBWIDE4LjY5NSBoIDAuMDAzIHogbSA5LjM4MiwtNS41MDYgYyAtMS4wNDMsLTAuNzQyIC0xLjY5MSwtMS4yMzYgLTEuNjkxLC0yLjMxNCAwLC0wLjc2Mjk5OSAwLjM3LC0xLjE4OTk5OTUgMS4yNSwtMS4xODk5OTk1IDAuOTA1LDAgMS4yMDYsMC42MDQ5OTk1IDEuMjI3LDIuNjczOTk5NSBsIDIuNjg5LC0wLjExMSBjIDAuMjA4LC0zLjM0NTk5OSAtMC45MjgsLTQuNzM5OTk5IC0zLjg3LC00LjczOTk5OSAtMi43MzMsMCAtNC4wNzgsMS4xOSAtNC4wNzgsMy42Mzc5OTkgMCwyLjIyNCAxLjExMywzLjIzNSAyLjkyLDQuNTYyIDEuNTUzLDEuMTY5IDIuNDU3LDEuODIgMi40NTcsMi43NjQgMCwwLjcyIC0wLjQ2NCwxLjIxMyAtMS4yNzUsMS4yMTMgLTAuOTUsMCAtMS41MDcsLTAuODc3IC0xLjM2NSwtMi40MDUgbCAtMi43MSwwLjA0NCBjIC0wLjQxOSwyLjg1MiAwLjc2Niw0LjUxNSAzLjkxNSw0LjUxNSAyLjc1OCwwIDQuMTk1LC0xLjIzNiA0LjE5NSwtMy43MDYgLTAuMDAzLC0yLjI0NyAtMS4xNiwtMy4xNDcgLTMuNjY0LC00Ljk0NCB6IG0gOC40OCwtNS40MzU5OTkgSCA2NS44MTMgViAyMS41MjQgaCAzLjA2IFYgNy43NTUwMDEgWiBtIC0xLjUwNywtNS40MzggYyAtMS4xOCwwIC0xLjczOCwwLjQyNyAtMS43MzgsMS45MTEgMCwxLjUyOCAwLjU1NCwxLjkwOSAxLjczOSwxLjkwOSAxLjIwNSwwIDEuNzM4LC0wLjM4MyAxLjczOCwtMS45MDkgMCwtMS40MTQgLTAuNTMzLC0xLjkxMSAtMS43MzksLTEuOTExIHogTSA3OS4xNTgsMTYuNTYgNzYuMzU1LDE2LjQyNSBjIDAsMi40MjYgLTAuMjc3LDMuMjEyIC0xLjIyNiwzLjIxMiAtMC45NSwwIC0xLjExMywtMC44NzcgLTEuMTEzLC0zLjczIHYgLTIuNjcgYyAwLC0yLjc2NDk5OSAwLjE4NywtMy42Mzg5OTk1IDEuMTM3LC0zLjYzODk5OTUgMC44OCwwIDEuMTEyLDAuODMwMDAwNSAxLjExMiwzLjM5Mjk5OTUgbCAyLjc3OCwtMC4xNzggQyA3OS4yMywxMC42NzkgNzguOTUsOS4yMTgwMDA1IDc4LjA5NCw4LjM4ODAwMSBjIC0wLjYyNywtMC42MDggLTEuNTc2LC0wLjg5NyAtMi44OTYsLTAuODk3IC0zLjEwNCwwIC00LjM3OSwxLjYxOCAtNC4zNzksNi4xNTM5OTkgdiAxLjkzMiBjIDAsNC42NzMgMS4wODgsNi4xNzggNC4yNjQsNi4xNzggMS4zNDQsMCAyLjI3LC0wLjI3IDIuODk2LC0wLjg1NCAwLjkwMiwtMC44MTQgMS4yNDksLTIuMjA1IDEuMTgsLTQuMzQxIHoiCiAgICAgZmlsbD0iI2ZmZmZmZiIKICAgICBpZD0icGF0aDI1LTMiCiAgICAgc29kaXBvZGk6bm9kZXR5cGVzPSJjY2NjY2NjY2NjY2NjY2NjY2NjY3NzY2Nzc2NjY2NjY2NjY2Nzc2Njc3Njc3NjY3NjY2NjY2NjY3Nzc3NzY2Nzc3NzY2Njc3Nzc2NjYyIKICAgICBzdHlsZT0iZmlsbDojMDAwMDAwO2ZpbGwtb3BhY2l0eToxIiAvPgo8L3N2Zz4K");/**/ 197 | width: 64px; 198 | height: 8px; 199 | } 200 | } 201 | img.logo { 202 | display: none !important; 203 | } 204 | } 205 | 206 | 207 | /*=======RESTYLE PAGES=======*/ 208 | /*Hide UPGRADE links*/ 209 | if HideUpgrade { 210 | div.ytmusic-guide-renderer:nth-child(3) > ytmusic-guide-section-renderer:nth-child(1) > div:nth-child(3) > ytmusic-guide-entry-renderer:nth-child(4), /*Upgrade link on the left slide-out nav panel*/ 211 | ytmusic-pivot-bar-item-renderer.style-scope:nth-child(4), /*Upgrade link in the Header*/ 212 | yt-multi-page-menu-section-renderer.style-scope:nth-child(1) > div:nth-child(2) > ytd-compact-link-renderer:nth-child(2) /*Get Music Premium link in the user menu popup*/ 213 | { 214 | display: none !important; 215 | } 216 | } 217 | 218 | /*SITE BACKGROUND COLORS*/ 219 | body, /*Main background*/ 220 | ytmusic-detail-header-renderer, /*Header background on an album page*/ 221 | ytmusic-player-page, /*Player page background*/ 222 | #nav-bar-background, .left-content.ytmusic-nav-bar /*Left navigation panel*/ 223 | { 224 | background-color: var(--yt-music-background) !important; 225 | } 226 | 227 | /*Disable the gradient that is applied to various sections on the Home page*/ 228 | ytmusic-browse-response[has-background]:not([disable-gradient]) .background-gradient.ytmusic-browse-response { 229 | background-image: none !important; 230 | } 231 | .immersive-background { 232 | display: none !important; 233 | } 234 | 235 | /*NAVIGATION PROGRESS BAR AT THE TOP*/ 236 | yt-page-navigation-progress { 237 | background-color: var(--yt-music-grey-background) !important; 238 | } 239 | #progress.yt-page-navigation-progress { 240 | background-color: var(--yt-music-accent-color) !important; 241 | } 242 | 243 | /*MENU ITEMS IN THE TOP NAV BAR*/ 244 | /*Logo*/ 245 | ytmusic-nav-bar .left-content [aria-label=Home] { 246 | padding: 0px; 247 | border-radius: 5px; 248 | background-size: cover; 249 | background-position: center center; 250 | background-repeat: no-repeat; 251 | } 252 | 253 | /*Search Box*/ 254 | .ytmusic-search-box, ytmusic-search-suggestion, ytmusic-search-box:not([opened]) .search-container.ytmusic-search-box, ytmusic-search-box:not([opened]):not([has-query]) #placeholder.ytmusic-search-box { 255 | background: var(--yt-music-background) !important; 256 | } 257 | 258 | /*Selected or hovered header item*/ 259 | ytmusic-pivot-bar-item-renderer.iron-selected, ytmusic-pivot-bar-item-renderer:hover, ytmusic-search-box:hover{ 260 | color: var(--yt-spec-text-primary) !important; 261 | } 262 | /*Not Selected or Hovered header item*/ 263 | ytmusic-pivot-bar-item-renderer, ytmusic-search-box { 264 | color: var(--yt-spec-text-secondary) !important; 265 | } 266 | /*Line to designate the position of the nav bar when scrolling*/ 267 | #nav-bar-background{ 268 | border-bottom: 1px solid var(--yt-music-border-color) !important; 269 | /*box-shadow: 0 0px 6px rgba(0,0,0,1) !important;*/ 270 | } 271 | 272 | /*Background and radius of the user popup*/ 273 | .ytmusic-popup-container { 274 | background-color: var(--yt-music-background) !important; 275 | border-radius: 0 !important; 276 | border: 1px solid var(--yt-music-border-color) !important; 277 | } 278 | 279 | /*MENU ITEMS IN THE SIDE BAR*/ 280 | /*Background for the slideout side panel*/ 281 | ytmusic-app[is-bauhaus-sidenav-enabled] #guide-wrapper.ytmusic-app { 282 | background: var(--yt-music-background) !important; 283 | border-right: 0px solid var(--yt-music-border-color) !important; 284 | box-shadow: 0 0px 6px 1px rgba(0,0,0,0.25) !important; 285 | } 286 | 287 | /*Icons*/ 288 | .yt-icon { 289 | fill: var(--yt-spec-text-primary) !important; 290 | } 291 | 292 | /*PICK 5 ARTISTS YOU LIKE*/ 293 | /*Footer background*/ 294 | .buttons.ytmusic-tastebuilder-renderer{ 295 | background: var(--yt-music-grey-background) !important; 296 | } 297 | 298 | /*NEW RECOMMENDATIONS BUBBLE*/ 299 | a.ytmusic-content-update-chip { 300 | background: var(--yt-music-grey-background) !important; 301 | border: 1px solid var(--yt-music-border-color) !important; 302 | } 303 | 304 | /*PRIMARY TEXT COLOR ITEMS*/ 305 | .title.ytmusic-carousel-shelf-basic-header-renderer, /*Major headings on the Home page*/ 306 | yt-formatted-string[has-link-only_]:not([force-default-style]) a.yt-simple-endpoint.yt-formatted-string, /*First row text under album/playlist pictures*/ 307 | button.ytmusic-navigation-button-renderer, /**/ 308 | .container.ytmusic-custom-index-column-renderer, /**/ 309 | .title.ytmusic-two-row-item-renderer, ytmusic-search-box[has-query] input.ytmusic-search-box, /**/ 310 | ytmusic-search-box[opened] input.ytmusic-search-box, /*Input text in the search box*/ 311 | ytmusic-item-section-tab-renderer.iron-selected .tab.ytmusic-item-section-tab-renderer, /**/ 312 | .tab.selected.ytmusic-item-section-tab-renderer, /*Library section selected category text*/ 313 | iron-input.tp-yt-paper-input > input.tp-yt-paper-input, /*Library section Recently added dropdown*/ 314 | .label.ytmusic-dropdown-item-renderer, /*Text in dropdown menus*/ 315 | ytmusic-tabs.iron-selected .tab.ytmusic-tabs, .tab.selected.ytmusic-tabs, /*Search results page, selected category*/ 316 | .text.style-scope.ytmusic-chip-cloud-chip-renderer, /*Search results page, subcategory bubbles*/ 317 | .title, /*Album title on the album page*/ 318 | #description, /*Album description text on the album page*/ 319 | tp-yt-paper-tab.iron-selected.ytmusic-player-page, /*Player page, selected section (Up next or Lyrics)*/ 320 | ytmusic-av-toggle[toggle-enabled] .song-button.ytmusic-av-toggle, ytmusic-av-toggle[toggle-enabled] .video-button.ytmusic-av-toggle, /*Player page, Song vs Video*/ 321 | .song-title.ytmusic-player-queue-item, /*Song title in the queue list*/ 322 | .dialog-title.ytmusic-settings-page, /*Settings title on the settings popup*/ 323 | .text, /*Text in some popup menus*/ 324 | .primary-text.ytmusic-tastebuilder-renderer, /*Pick 5 artists you like text*/ 325 | .primary-text.ytmusic-tastebuilder-item-renderer, /*Pick 5 artists you like, Artist names*/ 326 | ytmusic-description-shelf-renderer:not([has-strapline_]) .description.non-expandable.ytmusic-description-shelf-renderer /*Lyrics*/ 327 | { 328 | color: var(--yt-spec-text-primary) !important; 329 | } 330 | 331 | /*SECONDARY TEXT COLOR ITEMS*/ 332 | .strapline.ytmusic-carousel-shelf-basic-header-renderer, /**/ 333 | .subtitle.ytmusic-two-row-item-renderer, /**/ 334 | .third-title.ytmusic-two-row-item-renderer, /**/ 335 | .secondary-flex-columns.style-scope.ytmusic-responsive-list-item-renderer, /**/ 336 | .ytmusic-search-box::placeholder, /*Placeholder text in the search box*/ 337 | ytmusic-search-suggestion, /*Search result suggestions*/ 338 | .tab.ytmusic-item-section-tab-renderer, /*Library section other category text*/ 339 | .tab.ytmusic-tabs, /*Search results page, nonselected category*/ 340 | .more-button.ytmusic-shelf-renderer tp-yt-paper-button, /*Search results page, SHOW ALL*/ 341 | .index, /*Track numbers*/ 342 | .duration.ytmusic-player-queue-item, .byline.ytmusic-player-queue-item, /*Player page, Artist and duration*/ 343 | tp-yt-paper-tab:not(.iron-selected) > .tab-content.tp-yt-paper-tab, /*Player page, not selected section (Up next or Lyrics)*/ 344 | ytmusic-av-toggle[toggle-disabled] .song-button.ytmusic-av-toggle, ytmusic-av-toggle[toggle-disabled] .video-button.ytmusic-av-toggle, /*Player page, Song vs Video*/ 345 | .content-info-wrapper.ytmusic-player-bar .byline.ytmusic-player-bar, /*Artist and Album on the music player*/ 346 | #hover-time-info.ytmusic-player-bar, /*Time when hovering over the progress bar*/ 347 | yt-formatted-string.byline > a, /*Artist & Album in the player bar*/ 348 | .time-info.ytmusic-player-bar, /*Duration and total lenght of the song in the player bar*/ 349 | .secondary-text.ytmusic-tastebuilder-renderer /*Pick 5 artists you like , Get you started text*/ 350 | { 351 | color: var(--yt-spec-text-secondary) !important; 352 | } 353 | 354 | /*MODIFY ALBUM ART*/ 355 | img.yt-img-shadow, #player.ytmusic-player-page, /*Album art on the now playing page*/ 356 | .yt-simple-endpoint.image-wrapper, ytmusic-two-row-item-renderer .image.ytmusic-two-row-item-renderer, /*Album art/videos on the Home page. If you're going to add a shadow to these, then you'll also want to set the border-radius to 0% in the next rule.*/ 357 | /*.left-items.ytmusic-responsive-list-item-renderer, /*Small thumbnails on the Home page*/ 358 | .left-items.ytmusic-player-queue-item, /*Thumbnail in the queue*/ 359 | .image.ytmusic-player-bar, /*Thumbnail in the player bar*/ 360 | ytmusic-thumbnail-renderer[thumbnail-crop="MUSIC_THUMBNAIL_CROP_CIRCLE"], ytmusic-thumbnail-renderer[thumbnail-crop="MUSIC_THUMBNAIL_CROP_CIRCLE"] .image.ytmusic-thumbnail-renderer, /*Artist/Alum pictures when viewing the artist or album list in the UPLOADED library view*/ 361 | .image-wrapper.ytmusic-tastebuilder-item-renderer /*Artist images on the Pick 5 artists you like page*/ 362 | { 363 | box-shadow: 0 0 3px 1px rgba(0,0,0,0.5) !important; 364 | border-radius: 0% !important; /*50% creates circles, 0% creates squares*/ 365 | } 366 | /*yt-img-shadow[object-fit="CONTAIN"] img.yt-img-shadow { 367 | object-fit: none !important; 368 | } 369 | 370 | /*RIGHT CLICK MENU TEXT*/ 371 | .yt-simple-endpoint:hover { 372 | color: var(--yt-endpoint-color) !important; 373 | } 374 | 375 | /*NEXT AND PREVIOUS ITEMS BUTTONS*/ 376 | .previous-items-button.ytmusic-carousel, .next-items-button.ytmusic-carousel { 377 | background: var(--yt-spec-static-brand-white) !important; 378 | color: var(--ytmusic-nav-bar) !important; 379 | } 380 | 381 | /*SELECTED CATEGORY ITEM*/ 382 | ytmusic-item-section-tab-renderer.iron-selected .tab.ytmusic-item-section-tab-renderer, .tab.selected.ytmusic-item-section-tab-renderer, /*Library section*/ 383 | ytmusic-tabs.iron-selected .tab.ytmusic-tabs, .tab.selected.ytmusic-tabs, /*Search results page*/ 384 | #selectionBar.tp-yt-paper-tabs /*Player page, selected category*/ 385 | { 386 | border-bottom: 2px solid var(--yt-spec-text-primary) !important; 387 | } 388 | 389 | /*DROPDOWN MENUS*/ 390 | .dropdown-content.ytmusic-dropdown-renderer { 391 | background: var(--ytmusic-nav-bar) !important; 392 | } 393 | /*Hovering over a menu item*/ 394 | tp-yt-paper-item:hover, tp-yt-paper-icon-item:hover, #navigation-endpoint:hover { 395 | background: var(--ytmusic-menu-item-hover-background-color) !important; 396 | } 397 | 398 | /*SEARCH RESULTS PAGE*/ 399 | /*Pinned header when scrolling*/ 400 | ytmusic-tabs.stuck{ 401 | background-color: var(--ytmusic-nav-bar) !important; 402 | } 403 | /*Selected subcategory*/ 404 | ytmusic-chip-cloud-chip-renderer[chip-style="STYLE_PRIMARY"] a.ytmusic-chip-cloud-chip-renderer { 405 | background: var(--ytmusic-nav-bar) !important; 406 | } 407 | 408 | /*PLAY ALBUM BUTTON*/ 409 | yt-button-renderer.watch-button.ytmusic-menu-renderer { 410 | color: var(--ytmusic-color-black1) !important; 411 | background-color: transparent !important; 412 | } 413 | .watch-button path { 414 | fill: var(--ytmusic-color-black1) !important; 415 | } 416 | /*Secondary Button*/ 417 | .edit-playlist-button, ytmusic-toggle-button-renderer #button.ytmusic-toggle-button-renderer { 418 | --yt-button-color: var(--yt-spec-text-secondary) !important; 419 | border-color: var(--yt-spec-text-primary) !important; 420 | } 421 | .yt-spec-button-shape-next--mono.yt-spec-button-shape-next--filled { 422 | background-color: var(--yt-music-white-background) !important; 423 | border: solid 1px var(--ytmusic-color-black1) !important; 424 | } 425 | 426 | /*Song vs Video*/ 427 | .av-toggle.ytmusic-av-toggle { 428 | background-color: var(--ytmusic-color-black1) !important; 429 | }/**/ 430 | .song-button.ytmusic-av-toggle, .video-button.ytmusic-av-toggle{ 431 | background-color: var(--ytmusic-color-black1) !important; 432 | } 433 | 434 | 435 | /*QUEUE ITEMS*/ 436 | tp-yt-paper-tabs.ytmusic-player-page, ytmusic-player-queue-item { 437 | border-bottom: 1px solid var(--yt-music-border-color) !important; 438 | } 439 | 440 | /*Background color on the album art when an items is playing or the cursor is hovering*/ 441 | #background.ytmusic-item-thumbnail-overlay-renderer { 442 | opacity: 0.5 !important; 443 | } 444 | 445 | /*PROGRESS BAR*/ 446 | #primaryProgress{ 447 | background: var(--yt-music-accent-color) !important; 448 | } 449 | .slider-knob-inner.tp-yt-paper-slider { 450 | background-color: var(--yt-music-accent-color) !important; 451 | border: 2px solid var(--yt-music-accent-color) !important; 452 | } 453 | 454 | /*MEDIA CONTROLS*/ 455 | .previous-button .tp-yt-paper-icon-button, /*Previous button*/ 456 | #play-pause-button .tp-yt-paper-icon-button, /*Play/pause button*/ 457 | .next-button .tp-yt-paper-icon-button, /*Next button*/ 458 | .toggle-player-page-button .tp-yt-paper-icon-button, /*Toggle full screen player vs miniplayer*/ 459 | { 460 | fill: var(--ytmusic-text-primary) !important; 461 | } 462 | /*Repeat Button*/ 463 | ytmusic-player-bar:not([repeat-mode_="NONE"]) .repeat.ytmusic-player-bar { 464 | color: var(--ytmusic-text-primary) !important; 465 | } 466 | 467 | /*Explicit Icon*/ 468 | yt-icon.ytmusic-inline-badge-renderer{ 469 | color: var(--yt-spec-text-secondary) !important; 470 | } 471 | 472 | /*Like/dislike buttons*/ 473 | ytmusic-like-button-renderer[like-status="LIKE"] .like.ytmusic-like-button-renderer, ytmusic-like-button-renderer[like-status="DISLIKE"] .dislike.ytmusic-like-button-renderer{ 474 | color: var(--yt-spec-text-secondary) !important; 475 | } 476 | 477 | /*STILL WATCHING POPUP*/ 478 | /*Background color*/ 479 | tp-yt-paper-dialog{ 480 | background: var(--yt-music-background) !important; 481 | } 482 | /*Text*/ 483 | .text.ytmusic-you-there-renderer{ 484 | color: var(--ytmusic-text-primary) !important; 485 | } 486 | /*Button*/ 487 | yt-button-renderer #button.yt-button-renderer{ 488 | color: var(--yt-music-accent-color) !important; 489 | } 490 | 491 | /*SPINNER COLOR*/ 492 | .tp-yt-paper-spinner-lite { 493 | color: var(--yt-music-accent-color) !important; 494 | } 495 | /**/ 496 | } 497 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-midnight --------------------------------------------------------------------------------