mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-01-30 04:10:32 -08:00
Add: Option - dark color, proton chrome
This commit is contained in:
parent
bdbfcd118d
commit
88fae20e2c
3 changed files with 10 additions and 2 deletions
|
|
@ -33,10 +33,14 @@
|
|||
}
|
||||
|
||||
/* Fully Dark Mode ************************************************************/
|
||||
@import "theme/fully_dark";
|
||||
@include Option($fullyDark) {
|
||||
@import "theme/fully_dark";
|
||||
}
|
||||
|
||||
/* Proton Theme Mode **********************************************************/
|
||||
@import "theme/proton_chrome";
|
||||
@include Option($protonChrome) {
|
||||
@import "theme/proton_chrome";
|
||||
}
|
||||
|
||||
/** Decoration ****************************************************************/
|
||||
@import "theme/decoration";
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ $compatibilityTheme: "userChrome.theme.compatibility.theme";
|
|||
$compatibilityOS: "userChrome.theme.compatibility.os";
|
||||
$systemDefault: "userChrome.theme.system_default";
|
||||
$fullyColor: "userChrome.theme.fully_color";
|
||||
$darkColor: "userChrome.theme.fully_dark";
|
||||
$protonChrome: "userChrome.theme.proton_chrome";
|
||||
|
||||
@mixin Option($optionName) {
|
||||
@supports -moz-bool-pref("#{$optionName}") {
|
||||
|
|
|
|||
2
user.js
2
user.js
|
|
@ -42,6 +42,8 @@ user_pref("userChrome.theme.compatibility.theme", true);
|
|||
user_pref("userChrome.theme.compatibility.os", true);
|
||||
user_pref("userChrome.theme.system_default", true);
|
||||
user_pref("userChrome.theme.fully_color", true);
|
||||
user_pref("userChrome.theme.fully_dark", true);
|
||||
user_pref("userChrome.theme.proton_chrome", true);
|
||||
|
||||
// ** Useful Options ***********************************************************
|
||||
// Integrated calculator at urlbar
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue