Created
June 22, 2025 12:20
-
-
Save il-steffen/0459a04364ac6806968e9b3c3ab80880 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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') | |
} | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See https://github.com/orgs/community/discussions/163594