Skip to content

Commit 68a8bf6

Browse files
committed
update recommended prefs
1 parent 9edffe9 commit 68a8bf6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,10 @@ I also recommend setting the following prefs in `about:config`. There are two pr
147147
| userChrome.css.menupopup-shadows | Boolean | false | Add a shadow behind context menus and panels |
148148
| userChrome.css.overlay-scrollbars.in-content | Boolean | false | Overlay scrollbars are already enabled in the chrome UI. This pref enables them in web content |
149149
| widget.non-native-theme.scrollbar.style | Number | 2 | Enable the GTK scrollbar style in web content, regardless of your OS. Supports: 0 (default), 1 (macOS), 2 (GTK), 3 (android), 4 (win10), 5 (win11) |
150-
| widget.non-native-theme.win.scrollbar.use-system-size | Boolean | false | Override the scrollbar size (for Windows) |
151150
| widget.non-native-theme.scrollbar.size.override | Number | 11 | Make the scrollbar track 11px wide for GTK (scrollbar.style = 2) |
152151
| widget.non-native-theme.gtk.scrollbar.thumb-size | Number | 0.818 | Make the scrollbar thumb 9px wide for GTK |
152+
| widget.non-native-theme.win.scrollbar.use-system-size | Boolean | false | Override the scrollbar size (for Windows) |
153+
| <i>widget.non-native-theme.solid-outline-style</i> | Boolean | true | Whether `outline-style: auto` should be one big stroke or two contrasting strokes |
153154
| userChrome.css.remove-tooltip-borders | Boolean | false | Remove the thin border on tooltips. Not recommended |
154155
| userChrome.css.titlebar-buttons-on-left | Boolean | false | If true, move the titlebar buttons (close/min/max) to the left side of the window |
155156
| userChrome.css.wikipedia.dark-theme-enabled | Boolean | false | Enable the custom dark theme for Wikipedia.org (this is deprecated, I recommend skipping it) |

prefs/recommended.js

+2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ user_pref("widget.non-native-theme.scrollbar.size.override", 11);
9494
user_pref("widget.non-native-theme.gtk.scrollbar.thumb-size", "0.818");
9595
// set the default background color for color-scheme: dark. see it for example on about:blank
9696
user_pref("browser.display.background_color.dark", "#19191b");
97+
// make `outline-style: auto` result in one big stroke instead of two contrasting strokes
98+
user_pref("widget.non-native-theme.solid-outline-style", true);
9799
// findbar highlight and selection colors
98100
user_pref("ui.textHighlightBackground", "#7755FF");
99101
user_pref("ui.textHighlightForeground", "#FFFFFF");

0 commit comments

Comments
 (0)