commit 76c04243c53e96c6f11745bb3dc93c076beadefe
parent bcf4367f41146b8a4a3be2d2e5e9c6503308cf8a
Author: awy <awy@awy.one>
Date: Fri, 7 Mar 2025 15:03:24 +0300
theme
Diffstat:
1 file changed, 22 insertions(+), 15 deletions(-)
diff --git a/userContent.css b/userContent.css
@@ -1,23 +1,30 @@
-@-moz-document url(about:newtab) {
+@-moz-document url-prefix("about:"),
+ url-prefix("chrome:")
+{
body {
background-color: #353C4A !important;
}
-}
+ :root {
+ /* accent color */
+ --uc-my-color: #8fbcbb;
+ --uc-my-color-hover: color-mix(in oklab, var(--uc-my-color) 90%, white);
+ --uc-my-color-active: color-mix(in oklab, var(--uc-my-color) 80%, white);
-@-moz-document url(about:blank) {
- body {
- background-color: #353C4A !important;
- }
-}
+ --color-accent-primary: var(--uc-my-color) !important;
+ --color-accent-primary-hover: var(--uc-my-color-hover) !important;
+ --color-accent-primary-active: var(--uc-my-color-active) !important;
-@-moz-document url(chromebrowsercontentbrowser.xhtml) {
- browser[type=content-primary] {
- background: #353C4A !important;
- }
-}
+ --in-content-primary-button-background: var(--uc-my-color) !important;
+ --in-content-primary-button-background-hover: var(--uc-my-color-hover) !important;
+ --in-content-primary-button-background-active: var(--uc-my-color-active) !important;
-@-moz-document url(about:preferences) {
- body {
- background-color: #353C4A !important;
+ --primary-button-background-color: var(--uc-my-color) !important;
+ --primary-button-hover-background-color: var(--uc-my-color-hover) !important;
+ --primary-button-active-background-color: var(--uc-my-color-active) !important;
+
+ /* background color */
+ --uc-my-background-color: #353C4A;
+ --background-color-canvas: var(--uc-my-background-color) !important;
+ --background-color-box: var(--uc-my-background-color) !important;
}
}