-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest-template.json
55 lines (48 loc) · 1.49 KB
/
manifest-template.json
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"version": "2.0.0",
"name": "$name",
"manifest_version": 3,
"theme": {
"images": {
"theme_frame": "swatches/$(base|base|overlay).png",
"theme_toolbar": "swatches/surface.png",
"theme_frame_incognito": "swatches/med.png"
},
"colors": {
// main theme
"frame": [0, 0, 0], // overridden by images.theme_frame, but must be black to hide frame outline
"frame_inactive": [0, 0, 0], // base - overridden by tints.frame_inactive but may need to be black to hide frame outline
"bookmark_text": $text,
"button_background": $base,
"tab_background_text": $subtle,
"tab_background_text_inactive": $muted,
"tab_text": $text,
"toolbar": $overlay,
"toolbar_button_icon": $text,
// incognito
"frame_incognito": [0, 0, 0],
"frame_incognito_inactive": $highlightMed,
"tab_background_text_incognito": $text,
"tab_background_text_incognito_inactive": $subtle,
// omnibox
"omnibox_text": $($rose|$iris|$pine),
"omnibox_background": $base,
// new tab page
"ntp_background": $base,
"ntp_header": $surface,
"ntp_link": $subtle,
"ntp_text": $subtle
},
"tints": {
"buttons": [-1, -1, -1],
"frame": [-1, -1, -1],
"frame_inactive": [-1, -1, 0.485],
"frame_incognito": [-1, -1, -1],
"frame_incognito_inactive": [-1, -1, -1]
},
"properties": {
"ntp_background_alignment": "bottom",
"ntp_logo_alternate": 1
}
}
}