From a34c44351763767a49d45630ae3cc110c6c133a8 Mon Sep 17 00:00:00 2001 From: Federico Brigante Date: Thu, 21 Mar 2024 11:49:49 +0800 Subject: [PATCH] 24.2.8 - Backport color fix https://github.com/refined-github/refined-github/issues/7305 --- style/24.2.8.css | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 style/24.2.8.css diff --git a/style/24.2.8.css b/style/24.2.8.css new file mode 100644 index 0000000..0c7e097 --- /dev/null +++ b/style/24.2.8.css @@ -0,0 +1,10 @@ +/* https://github.com/refined-github/refined-github/issues/7305 */ +:root { + --rgh-green: var(--fgColor-success, var(--color-success-fg, #1a7f37)); + --rgh-red: var(--fgColor-danger, var(--color-danger-fg, #cf222e)); + --rgh-border-color: var( + --borderColor-muted, + var(--color-border-muted, #d8dee4) + ); + --rgh-background: var(--bgColor-default, var(--color-canvas-default, #fff)); +}