-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.jsonc
More file actions
33 lines (31 loc) · 1.38 KB
/
constants.jsonc
File metadata and controls
33 lines (31 loc) · 1.38 KB
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
{
// The name used for pulling from Mod Garden's platform api
"event": "mod-garden/next",
// The subdirectory in https://github.com/ModGardenEvent/art used for pulling the icon
"art_id": "mod-garden/next",
// The type of this event
"event_type": "mod-garden",
// Central definition of colours
// This is a freeform key-value field. Values prefixed with an underscore are depended upon by scripts
"colours": {
"primary": "#ff5ee7",
"secondary": "#7a4a7d",
"background": "#28242e",
// Unsup colours. See https://git.sleeping.town/unascribed/unsup/wiki/Config-format
"_unsup_background": ".background",
// Colour of the title text
"_unsup_title": "#ffffff",
// Colour of the subtitle text. Is usually shaded to match the background slightly
"_unsup_subtitle": "#ffffff",
// The color of the filled portion of the progress bar and wheel
"_unsup_progress": ".primary",
// The color of the non-filled portion of the progress bar
"_unsup_progress_track": ".secondary",
// The color of the text in a dialog
"_unsup_dialog": "#ffffff",
// The background color of buttons. Please ensure this has enough contrast with the button text!
"_unsup_button": ".primary",
// The color of text in buttons
"_unsup_button_text": "#000000"
}
}