-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathconfig.jsonc
More file actions
28 lines (28 loc) · 783 Bytes
/
config.jsonc
File metadata and controls
28 lines (28 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"repos": [
[
"minifox.json",
{
"prefs": {
// Set about:config preferences for this theme
"uc.tweak.translucency": true
}
}
]
],
// OR:
"repos": [
[
"safari-style.json",
{
// This theme requires adding a custom @import url line to the
// userChrome.css, this is already defined in modules/safari-style.json,
// but we can override it here to follow the Adaptive Tab Color themeing
// Note: The URL is relative to the repo clone directory.
// This creates a new customUserChrome.css file then @imports it in the main userChrome.css
"userChrome": "@import url('./css/userChrome-theme.css');"
}
]
],
"outputsPath": "outputs/profile"
}