-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add user.js file to make installation easier.
- Loading branch information
Showing
2 changed files
with
24 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Edge-Frfox - user.js | ||
// https://github.com/bmFtZQ/edge-frfox | ||
// This file contains the settings required for the theme to function correctly. | ||
|
||
// Enables the userChrome.css and userContent.css files. | ||
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); | ||
// Allows the theme's SVG icons to be coloured properly. | ||
user_pref("svg.context-properties.content.enabled", true); | ||
// Allows colours used in the theme to be mixed with others. | ||
user_pref("layout.css.color-mix.enabled", true); | ||
// Allows theme to use different colours for light/dark mode. | ||
user_pref("layout.css.light-dark.enabled", true); |