Skip to content

Commit

Permalink
started playing with colors, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Boyer committed Mar 29, 2013
1 parent c9f50d2 commit aa9d77f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions source/main.brs
Expand Up @@ -8,6 +8,7 @@ function Main()


globals.analytics = Analytics() globals.analytics = Analytics()
globals.analytics.startup() globals.analytics.startup()
SetTheme()
GridScreen() GridScreen()
globals.analytics.shutdown() globals.analytics.shutdown()


Expand Down
19 changes: 19 additions & 0 deletions source/theme.brs
@@ -0,0 +1,19 @@
'
' This makes it pretty
'

function SetTheme()

app = CreateObject("roAppManager")
theme = CreateObject("roAssociativeArray")

' The grid screen
theme.GridScreenBackgroundColor = "#000000"

' The search screen
theme.BackgroundColor = "#000000"
theme.ButtonMenuNormalText = "#FFFFFF"

app.SetTheme(theme)

end function

0 comments on commit aa9d77f

Please sign in to comment.