Geoguessr Dark Mode

Dark Mode for Geoguessr

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Geoguessr Dark Mode
// @description  Dark Mode for Geoguessr
// @version      1.2
// @author       luxus
// @namespace    luxuus.dev
// @run-at       document-start
// @match        *://*.geoguessr.com/*
// @icon         https://www.google.com/s2/favicons?domain=geoguessr.com
// @license      MIT
// @grant        none
// ==/UserScript==

let primary="black";
let secondary="#0f0f0f";
let secondary_hover="#141414";
let primary90="rgba(0, 0, 0, 0.9)";
let modal="linear-gradient(0deg,rgb(0 0 0 / 70%),rgb(0 0 0 / 70%))";
let content="white";
let link="#49c7ff";
let title="#8d8d8d";
let warning="#3a3a3a";


let style = document.createElement('style');
style.innerHTML = `
:root{
--page-background-color:${primary};
--ds-color-purple-100: ${secondary};
--ds-color-white-10: ${secondary};
--ds-color-black-80: ${secondary};
--color-blue-70: ${title};
--ds-color-black-70:${warning};
}
.background_backgroundClassic__ySr_Z,
.background_backgroundHome__lurxW,
.background_backgroundProfile__EY4oP,
.background_backgroundMultiplayer__TLhIS,
.party_root__EQz_N,
.party-footer_root__Rz_io,
.vertical_root__zz5g3,
.modal_colorBlack__dy2cr,
.confirmation-dialog_content__cwdow,
.result-layout_contentNew__dDdP0,
.fullscreen-spinner_root__IwRRr,
.fullscreen-spinner_backgroundSolid__kZ0BT,
.quiz_root__IJGS_,
.game-editor_root__afDeb,
.preview-overlay_root__Uj38k,
.no-context-layout_wrapper__4P7rz,
.background_backgroundCareer__yuR0i,
.background_backgroundGroupEvents__FqBS3,
.background_backgroundParty__5s7oG,
.lobby_bottom__261lZ,
.version4-in-game_backgroundCups__jO0My,
#country-streak-score-panel-summary,
.game-summary_playedRoundsHeader__86HiG,
.in-game_backgroundDefault__UDbvo,
.health-bar_barInnerContainer__eCair,
.health-bar_slant__Va1GK
{
    background:${primary};
}

.result-map_map__I5SES{
    background:${primary};
    box-shadow: none;
}

.game-summary_mapContainer__lA0Li{
    border-color: ${primary};
}

.game-editor_roundPanel__K4Dp5,
.edit-round_main__ZJS54,
.team-friend-card_friendCard__Xp0Sz,
.waiting-message_roundStatusMessage__McbU_,
.friend-card_friendCard__V5XsF
{
    background:${secondary}
}
.side-tray_body__pV6bt,
.overlay-modal_backlight__Ekx7t,
.game-menu_gameMenu__8ON8f,
.friend-chat_chatModal__8wlvi,
.quick-search_resultList__cLjml,
.team-friends-modal_modal__9Gla_
{
    background:${primary90};
}
.modal_backlight__kSwcy,
.friend-chat_overlay__0RbAc,
.confirmation-dialog_confirmationDialog__inOcr,
.team-friends-modal_overlay__2e_Y_{
    background:${modal};
}
.slanted-wrapper_variantGrayTransparent__aufaF
{
    --variant-background-color:${secondary};
}
.slanted-wrapper_variantGrayTransparent__aufaF.slanted-wrapper_interactive__JJn8d:hover,
.slanted-wrapper_variantGrayTransparent__aufaF.slanted-wrapper_interactive__JJn8d:focus-within
{
    --variant-background-color:${secondary_hover};
}
.lobby_bottom__261lZ{
    box-shadow:none;
}
.version4-in-game_backgroundDefault__EdFDb{
    --background:${primary};
}
.profile-settings__link,
.checklist_checklist__prLBn a,
.link,
.card__content a,
.gift-card-iframe_white__Ix_zz,
.terms_part__fPXk2 a{
    color:${link};
}
.slanted-wrapper_variantPurple__95_Ub
{
    --variant-background-color:${primary};
    --variant-box-shadow:none;
}
.panorama-compass_compassContainer__MEnh0{
    background:#0000004f;
}
.panorama-compass_compass__MrdBa,
.edit-profile__section,
.subscription__section{
    background:none;
}
.edit-profile__section,
.subscription__section
{
    border-color:transparent;
}
.body-1,
.body-2
{
    color:${content};
}
.card{
    --background-color: ${secondary};
    --color: ${content};
}
.card.card--white.card--medium-spacing{
    border:.0625rem solid var(--ds-color-white-20);
}
.flash_typeInfo__NpA4k{
    --color:var(--ds-color-yellow-50);
}

.game-summary_bottom__PMrfV,
.game-finished_bottom__EB5Jx,
.lobby_bottom__NH_QY
{
    background: none;
    box-shadow: none;
}

.game-summary_container__Aeqxl{
    background-color: ${primary};
}

`;
document.body.append(style);

document.addEventListener("DOMContentLoaded", function() {
    var observer = new MutationObserver(function() {
        var mapbg = document.querySelector('.guess-map__canvas > div > div:first-child');
        if (mapbg) {
            mapbg.style.backgroundColor = "rgba(0,0,0,.5)";
        }
        var countrystreak = document.querySelector("#country-streak-score-panel-summary");
        if (countrystreak) {
            countrystreak.style.background = `${primary}`;
        }
    });

    observer.observe(document.body, { childList: true, subtree: true });
});