Skip to content

Instantly share code, notes, and snippets.

@il-steffen
Created June 22, 2025 12:20
Show Gist options
  • Save il-steffen/0459a04364ac6806968e9b3c3ab80880 to your computer and use it in GitHub Desktop.
Save il-steffen/0459a04364ac6806968e9b3c3ab80880 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name GitHub Actions White Theme Dark Logs
// @version 1.0
// @description change theme of Actions Logs to dark mode
// @match https://github.com/*/*/actions/runs/*
// ==/UserScript==
(function() {
const element = document.querySelector('#logs')
if (element) {
element.setAttribute('data-color-mode', 'dark')
element.setAttribute('data-dark-theme', 'dark')
}
})()
@il-steffen
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment