Skip to content

Instantly share code, notes, and snippets.

@jukefr
Last active October 23, 2023 22:34
Show Gist options
  • Save jukefr/fccba39f9055dd9dff3b8738b27a5be6 to your computer and use it in GitHub Desktop.
Save jukefr/fccba39f9055dd9dff3b8738b27a5be6 to your computer and use it in GitHub Desktop.
Windows Auto Dark Mode
  1. Windows: https://github.com/AutoDarkMode/Windows-Auto-Night-Mode
  2. Browser: https://darkreader.org/ and click uner On/Off and enable system scheme following
  3. VSCode:
{
    "workbench.preferredDarkColorTheme": "Dracula",
    "workbench.preferredLightColorTheme": "GitHub Light",
    "window.autoDetectColorScheme": true
}
  1. Windows Terminal: Make sure to have latest installed (not one that comes by default
    "theme": "system",
    "profiles": 
    {
        "defaults": {},
        "list": 
            {
                "colorScheme": 
                {
                    "dark": "Ubuntu-ColorScheme",
                    "light": "One Half Light"
                },
                "guid": "{51855cb2-8cce-5362-8f54-464b92b32386}",
                "hidden": false,
                "name": "Ubuntu",
                "source": "CanonicalGroupLimited.Ubuntu_79rhkp1fndgsc",   
            },
            [...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment