Skip to content
  • Sponsor ibillingsley/HumbleNewTabPage

  • Notifications You must be signed in to change notification settings
  • Fork 106
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Firefox: Support light and dark theme modes #123

Open
wants to merge 8 commits into
base: firefox
Choose a base branch
from
Prev Previous commit
Next Next commit
fix: adjus the theme selectors
dee-me-tree-or-love authored and akirk committed Jun 24, 2024
commit 6fd0df09bcffb85ba9d6c1d32f6b04cb3c3f5ae3
10 changes: 5 additions & 5 deletions newtab.html
Original file line number Diff line number Diff line change
@@ -69,13 +69,13 @@
</fieldset>
<fieldset>
<legend>Colors</legend>
<label><span>Theme</span><select id="options_theme"></select></label>
<label><span>Night theme</span><select id="options_night_theme"></select></label>
<label><span>Theme mode</span><select id="options_theme_mode">
<option value="100">day</option>
<option value="200">night</option>
<option value="300">auto</option>
<option value="light">light</option>
<option value="dark">dark</option>
<option value="auto">auto</option>
</select></label>
<label><span>Theme</span><select id="options_theme"></select></label>
<label><span>Dark theme</span><select id="options_dark_theme"></select></label>
<label><span>Text</span><input id="options_font_color" type="color"/></label>
<label><span>Background</span><input id="options_background_color" type="color"/></label>
<label><span>Highlight</span><input id="options_highlight_color" type="color"/></label>