GitHub fix theme

Buttons and labels should be colored as "primary", not "success".

2025-07-17 기준 버전입니다. 최신 버전을 확인하세요.

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

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

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name        GitHub fix theme
// @namespace   Violentmonkey Scripts
// @match       https://github.com/*
// @match       https://*.github.com/*
// @grant       GM_addStyle
// @run-at      document-start
// @license     MIT
// @version     1.0.4
// @author      Mops
// @icon        https://github.githubassets.com/favicons/favicon-dark.png
// @description Buttons and labels should be colored as "primary", not "success".
// ==/UserScript==

/**
 * blue: 215deg
 * green: 135deg
 * orange: 23deg
 */
let accent = '215deg';

GM_addStyle(`
/* All primary-themed buttons should be blue*/
html.js-focus-visible[lang][data-color-mode] {
  --accent: ${accent};

  --bgColor-accent-emphasis: hsl(var(--accent) 83.61% 52.16%);
  --button-primary-bgColor-rest: var(--bgColor-accent-emphasis);
  --button-primary-bgColor-active: hsl(var(--accent) 83.61% 60.16%);
  --button-primary-bgColor-hover: hsl(var(--accent) 83.61% 44.16%);
  --button-primary-bgColor-disabled: hsl(var(--accent) 83.61% 41.16%);

  --borderColor-accent-emphasis: hsl(var(--accent) 63.61% 56.16%);
  --button-primary-borderColor-rest: var(--borderColor-accent-emphasis);
  --button-primary-borderColor-disabled: hsl(var(--accent) 63.61% 45.16%);
}

/* (Latest) pill and other success-themed pills */
.Label.Label--success,

/* (Preview) pill */
:where(.prc-Label-Label--LG6X):where([data-variant=success])
{
  border-color: var(--borderColor-accent-emphasis);
  color: var(--fgColor-accent);
}
`);