Add SICK Firefox theme that makes Firefox like Arc Browser.

This commit is contained in:
2024-07-24 22:19:29 -05:00
parent 0f17351e3a
commit aff93e0e03
155 changed files with 5732 additions and 2 deletions

14
themes/firefox/user.js Normal file
View File

@@ -0,0 +1,14 @@
// 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);
// Enables the CSS :has() selector, required for hide tabs toolbar tweak.
user_pref("layout.css.has-selector.enabled", true);