Skip to content

Commit 4edaa3b

Browse files
committed
lighter links in dark theme and attempt to lighten text.
1 parent 427260b commit 4edaa3b

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

popup-page-styles/popup-theme.css

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ It adjusts colors, backgrounds, borders, and other visual elements to better sui
77
Key areas:
88
- Global overrides on body.dark-theme for base colors.
99
- Adjustments for buttons, sections, inputs, and other UI components.
10-
- Specific overrides for dynamic button items, toast notifications, and danger buttons.
10+
- Specific overrides for dynamic button items, toast notifications, danger buttons,
11+
versionContainer text, and links.
1112
*/
1213

1314
/* ------------------------------------------------------------------------- */
@@ -146,3 +147,20 @@ body.dark-theme .button-item .shortcut-indicator {
146147
color: #eee !important;
147148
background: transparent !important;
148149
}
150+
151+
/* ------------------------------------------------------------------------- */
152+
/* Additional Dark Theme Overrides for Version Container and Links */
153+
/* ------------------------------------------------------------------------- */
154+
/* Make the versionContainer text light */
155+
body.dark-theme #versionContainer {
156+
color: var(--text-color);
157+
}
158+
159+
/* All links in dark theme should be super light blue */
160+
body.dark-theme a {
161+
color: #add8e6;
162+
}
163+
164+
body.dark-theme a:hover {
165+
color: #9acfea;
166+
}

0 commit comments

Comments
 (0)