2020-08-16 14:44:03 +00:00
|
|
|
' Set global constants
|
|
|
|
sub setConstants()
|
|
|
|
globals = m.screen.getGlobalNode()
|
|
|
|
|
|
|
|
' Set Global Constants
|
|
|
|
globals.addFields({
|
|
|
|
constants: {
|
|
|
|
|
|
|
|
poster_bg_pallet: ["#00455c", "#44bae1", "#00a4db", "#1c4c5c", "#007ea8"],
|
2021-07-09 20:08:32 +00:00
|
|
|
|
2020-08-16 14:44:03 +00:00
|
|
|
colors: {
|
|
|
|
button: "#006fab"
|
|
|
|
},
|
|
|
|
|
|
|
|
icons: {
|
|
|
|
ascending_black: "pkg:/images/icons/up_black.png",
|
|
|
|
ascending_white: "pkg:/images/icons/up_white.png",
|
|
|
|
descending_black: "pkg:/images/icons/down_black.png",
|
2022-05-30 12:59:24 +00:00
|
|
|
descending_white: "pkg:/images/icons/down_white.png",
|
2020-10-24 13:56:33 +00:00
|
|
|
check_black: "pkg:/images/icons/check_black.png",
|
|
|
|
check_white: "pkg:/images/icons/check_white.png"
|
2020-08-16 14:44:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2022-05-30 12:57:40 +00:00
|
|
|
end sub
|