Sub InitTheme()
app = CreateObject("roAppManager")
theme = CreateObject("roAssociativeArray")
'the background image at top of screen
theme.OverhangSliceSD = "pkg:/images/Overhang_Background_SD.jpg"
theme.OverhangSliceHD = "pkg:/images/Overhang_Background_HD.jpg"
theme.OverhangLogoSD = "pkg:/images/Overhang_Logo_SD.png"
theme.OverhangLogoHD = "pkg:/images/Overhang_Logo_HD.png"
'affects overhang primary logo
theme.OverhangOffsetSD_X = "0"
theme.OverhangOffsetSD_Y = "0"
theme.OverhangOffsetHD_X = "0"
theme.OverhangOffsetHD_Y = "0"
theme.OverhangPrimaryLogoHD_X="0"
theme.OverhangPrimaryLogoHD_Y="0"
theme.OverhangPrimaryLogoSD_X="0"
theme.OverhangPrimaryLogoSD_Y="0"
theme.OverhangSecondaryLogoHD_X="0"
theme.OverhangSecondaryLogoHD_Y="0"
theme.OverhangSecondaryLogoSD_X="0"
theme.OverhangSecondaryLogoSD_Y="0"
theme.overhangSecondaryLogoSD="pkg:/images/Overhang_Logo_SD.png"
theme.overhangSecondaryLogoHD="pkg:/images/Overhang_Logo_HD.png"
theme.filterbannerSliceSD="pkg:/images/overhangsliceSD.jpg"
theme.filterbannerSliceHD="pkg:/images/overhangsliceHD.jpg"
theme.BackgroundColor="#101010"
theme.FilterBannerInactiveColor="#A0A0A0" '111111
theme.FilterBannerActiveColor ="#D0D0D0"
theme.FilterBannerSideColor="#F0F0F0" 'color of not-selected active banner
theme.FilterBannerActiveSD="pkg:/images/buttonSliceSD.jpg"
theme.FilterBannerActiveHD="pkg:/images/buttonSliceHD.jpg"
theme.FilterBannerinActiveSD="pkg:/images/buttonsliceSD.jpg"
theme.FilterBannerinActiveHD="pkg:/images/buttonsliceHD.jpg"
'theme.ButtonNormalColor="#FFFFFF"
'theme.buttonmenuhighlighttext="#F0F0F0"
'theme.ButtonHighlightColor="#005aaf"
'theme.ButtonMenuNormalOverlayText="#F0F0F0"
'theme.PosterScreenLine1Text="#000000"
'theme.PosterScreenLine2Text="#000000"
theme.ButtonMenuNormalText="#e6e6e6"
theme.breadcrumbtextleft="#000000"
theme.breadcrumbtextright="#000000"
theme.OverhangPrimaryLogoOffsetHD_x="0"
theme.OverhangPrimaryLogoOffsetHD_y="0"
theme.OverhangPrimaryLogoOffsetSD_x="0"
theme.OverhandPrimaryLogoOffsetSD_y="0"
theme.OverhangSecondaryLogoOffsetHD_X="0"
theme.OverhangSecondaryLogoOffsetHD_Y="0"
theme.OverhangSecondaryLogoOffsetSD_X="0"
theme.OverhangSecondaryLogoOffsetSD_Y="10"
app.SetTheme(theme)
end sub