Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Replace #fefefe with #eeeeee
I meant to do something like #eeeeee to begin with because #fefefe is
just 254 instead of 255 rbg values (not a lot dimmer).
  • Loading branch information
1Git2Clone committed Mar 23, 2026
commit 8bb8625319f68b58804c7d97333b3cf40714f593
16 changes: 8 additions & 8 deletions src/menu/popup.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
:root {
--color-bg: #fefefe;
--color-bg: #eeeeee;
--color-text: #111111;
--color-tooltip-bg: #fefefe;
--color-tooltip-bg: #eeeeee;
--color-tooltip-text: #111111;
}

@media (prefers-color-scheme: dark) {
:root {
--color-bg: #111111;
--color-text: #fefefe;
--color-text: #eeeeee;
--color-tooltip-bg: #111111;
--color-tooltip-text: #fefefe;
--color-tooltip-text: #eeeeee;
}

#ghlink:not([data-theme]) {
Expand All @@ -19,17 +19,17 @@
}

:root[data-theme="light"] {
--color-bg: #fefefe;
--color-bg: #eeeeee;
--color-text: #111111;
--color-tooltip-bg: #fefefe;
--color-tooltip-bg: #eeeeee;
--color-tooltip-text: #111111;
}

:root[data-theme="dark"] {
--color-bg: #111111;
--color-text: #fefefe;
--color-text: #eeeeee;
--color-tooltip-bg: #111111;
--color-tooltip-text: #fefefe;
--color-tooltip-text: #eeeeee;
}

:root[data-theme="light"] #ghlink {
Expand Down