RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login

    Material Theme

    Scheduled Pinned Locked Moved Projects and Themes
    90 Posts 11 Posters 58.6k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • lilbudL
      lilbud
      last edited by

      Theme has been updated, Dark background, and gamelist selector matches header and footer

      Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

      Backlog: http://backloggery.com/lilbud

      1 Reply Last reply Reply Quote 0
      • pompitousofsethP
        pompitousofseth
        last edited by

        Any chance of adding virtualboy to your theme?

        lilbudL 1 Reply Last reply Reply Quote 0
        • lilbudL
          lilbud @pompitousofseth
          last edited by

          @pompitousofseth I'll try

          Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

          Backlog: http://backloggery.com/lilbud

          pompitousofsethP 1 Reply Last reply Reply Quote 0
          • pompitousofsethP
            pompitousofseth @lilbud
            last edited by

            @lilbud thanks! I tried editing the .svg files myself but I don't know what I'm doing when it comes to advanced imaging software. Take your time. No rush.

            lilbudL 1 Reply Last reply Reply Quote 0
            • lilbudL
              lilbud @pompitousofseth
              last edited by

              @pompitousofseth Done and Done, update from setup script

              Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

              Backlog: http://backloggery.com/lilbud

              pompitousofsethP 1 Reply Last reply Reply Quote 0
              • pompitousofsethP
                pompitousofseth @lilbud
                last edited by

                @lilbud Thanks again!

                1 Reply Last reply Reply Quote 0
                • lilbudL
                  lilbud
                  last edited by

                  Thinking of a redesign of the material theme, got this so far.

                  0_1479780824277_Material 2.0.png

                  If anyone has ideas, let them be heard.

                  Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

                  Backlog: http://backloggery.com/lilbud

                  pompitousofsethP 1 Reply Last reply Reply Quote 0
                  • pompitousofsethP
                    pompitousofseth @lilbud
                    last edited by

                    @lilbud maybe add extra rectangles to the boxes for shadows?

                    https://material.google.com/material-design/elevation-shadows.html#elevation-shadows-shadows

                    herb_fargusH 1 Reply Last reply Reply Quote 0
                    • herb_fargusH
                      herb_fargus administrators @pompitousofseth
                      last edited by

                      @pompitousofseth it's a tightrope to walk with the VRAM on the pi

                      If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                      Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                      pompitousofsethP RookervikR 2 Replies Last reply Reply Quote 0
                      • pompitousofsethP
                        pompitousofseth @herb_fargus
                        last edited by

                        @herb_fargus @lilbud if it's too much strain on the vram the shadows could be incorporated into the white background and they would be one static image.

                        1 Reply Last reply Reply Quote 0
                        • RookervikR
                          Rookervik Global Moderator @herb_fargus
                          last edited by

                          @herb_fargus VRAM won't be an issue on the shadows. If he's using a 1 pixel PNG for the colored boxes, he'd just put another instance of the image, tint it black, and set the opacity to 50% or lower. Actually won't take any additional VRAM. You could also create this whole theme with a single 320x196 (or something) PNG image with transparency. Runs incredibly fast, takes little VRAM, stretches sharp, and no need to fiddle with placement of elements. That's what I use on the Modern theme and the Luminous theme to an extent.

                          herb_fargusH 1 Reply Last reply Reply Quote 0
                          • RookervikR
                            Rookervik Global Moderator
                            last edited by Rookervik

                            Try this image as the background, lilbud: BG Image

                            And tint it: 019546 with the <color> tag.

                            The shadows should stay black and transparent, while the white part will take on the tint you apply to it. Be sure to stretch the image to full screen. The image is less than 1kb, and smaller than what I use in Pixel. And pixel is faaaast.

                            lilbudL 1 Reply Last reply Reply Quote 0
                            • herb_fargusH
                              herb_fargus administrators @Rookervik
                              last edited by

                              @Rookervik from the ES theme master himself!

                              If you read the documentation it will answer 99% of your questions: https://retropie.org.uk/docs/

                              Also if you want a solution to your problems read this first: https://retropie.org.uk/forum/topic/3/read-this-first

                              1 Reply Last reply Reply Quote 0
                              • lilbudL
                                lilbud @Rookervik
                                last edited by

                                @Rookervik Is there a way to call the individual system logo from the main theme.xml?

                                Like this...

                                        <image name="logo">
                                		<pos>0.600 0.057</pos>
                                		<maxSize>0.26 0.1</maxSize>
                                		<path>./system.svg</path>
                                	</image>
                                

                                Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

                                Backlog: http://backloggery.com/lilbud

                                RookervikR 1 Reply Last reply Reply Quote 0
                                • RookervikR
                                  Rookervik Global Moderator @lilbud
                                  last edited by

                                  @lilbud Nope, but you can define everything for that logo, then call for the path of the logo in the theme.xml.

                                  Pixel and Modern do this:

                                  In the main xml, you set positions for EVERYTHING. Font for everything, colors... set up the entire theme here in the main xml. So calling for your image would be

                                  main.xml:

                                          <image name="logo">
                                  		<pos>0.600 0.057</pos>
                                  		<maxSize>0.26 0.1</maxSize>
                                  		<color>ffffffff</color>
                                  	</image>
                                  

                                  And then the individual theme.xmls would pretty much ONLY have links to images...

                                  theme.xml:

                                          <image name="logo">
                                                  <path>./system.svg</path>
                                  	</image>
                                  

                                  Since the theme.xml calls for the use of main.xml (up at the top) both xmls are basically combined. Favoring the theme.xml over the main.xml in disputes.

                                  1 Reply Last reply Reply Quote 0
                                  • lilbudL
                                    lilbud
                                    last edited by

                                    Been working on something new, thought everyone would like to see.

                                    0_1480092183406_snapshot.png

                                    Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

                                    Backlog: http://backloggery.com/lilbud

                                    pompitousofsethP 1 Reply Last reply Reply Quote 0
                                    • pompitousofsethP
                                      pompitousofseth @lilbud
                                      last edited by

                                      @lilbud looks awesome!

                                      1 Reply Last reply Reply Quote 0
                                      • RookervikR
                                        Rookervik Global Moderator
                                        last edited by

                                        That's pretty unique! Where is the gamelist going to go?

                                        1 Reply Last reply Reply Quote 0
                                        • lilbudL
                                          lilbud
                                          last edited by

                                          @Rookervik I was planning to make the title the game list. I could not find a way to fit a game list in there and make it look presentable. Have any ideas?

                                          Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

                                          Backlog: http://backloggery.com/lilbud

                                          1 Reply Last reply Reply Quote 0
                                          • lilbudL
                                            lilbud
                                            last edited by

                                            So I have been juggling some ideas around for the last few months, here is one of them.

                                            alt text

                                            Creator of the Radiocade: https://retropie.org.uk/forum/topic/6077/radiocade

                                            Backlog: http://backloggery.com/lilbud

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                                            Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.