Chicuelo Theme
-
Sure thing, or if you know the background colour you want for each one let me know I can toss them together
-
This is what I had already started putting together, I just finished it off now. What do you think? Smaller logo and bigger text. This is an exported PNG filled over with grey for demo purposes so you can actually see it. Will give it a try later inside ES after applying a white fill on the SVG and then can see how it looks.
https://drive.google.com/open?id=1Ng5GyhVXrGSBPDVxyylvgsjMtzs-3nvr
Cheers!
-
@keigan said in Chicuelo Theme:
Sure thing, or if you know the background colour you want for each one let me know I can toss them together
Thats cool. heres what I came up with for a few extra ones https://mega.nz/#F!uV0HgbTR!phoju0Drj7sUGYbHsWf9ZQ
for better or worse I ended up taking the colours from the official artwork/game cover to get colours that suited the systems
be good to get your thoughts.
many thanks -
@stephensmattlee said in Chicuelo Theme:
@keigan said in Chicuelo Theme:
Sure thing, or if you know the background colour you want for each one let me know I can toss them together
Thats cool. heres what I came up with for a few extra ones https://mega.nz/#F!uV0HgbTR!phoju0Drj7sUGYbHsWf9ZQ
for better or worse I ended up taking the colours from the official artwork/game cover to get colours that suited the systems
be good to get your thoughts.
many thanksThey look great!
Exactly what I would have done, taken a colour that associates with the logo, or box, and you nailed it.
-
@keigan thats awesome, Im glad you approve, feel free to combine them with your originals if you're happy to :)
-
How about this for the FBA logo?
https://drive.google.com/open?id=1umFxVJ_uJy-WEknmT10-VOfxzB3m-L9cMuch more happy with this.
-
Great! I was thinking about something like this for fba: (I have the svg file)
Whit the height limit I see some logos that are a bit bolder due the square aspect ratio, like genesis 32x but its not big deal
-
Nice! That looks great too, better than mine (which is just a rework of that other PNG we both had). Maybe you could put 'alpha' on a separate line to make the logo more square so it fits better within the theme?
-
@movisman
I thought about it, but the word alpha will become HUGE and I think the logo will become bold as fuck :P -
Hmmm, i'm not too sure what you mean? So just placing the word Alpha underneath, on the same SVG, same size as it is now? Not sure on position though, either the word "alpha" in the centre or right justified underneath. Unless i'm confused it should look ok? Are you suggesting the logo would become too large because it's square?
This is where a maximum height in theme.xml comes in, which is what i've adjusted on my local copy (which is also on that video preview I sent). It reduces the size of square logos like Master System which look a bit too big at the moment, but keeps the width of the wider ones.
However, all that being said, all on one line is still likely to display fine (and looks better in general), as a lot of other systems are a similar width and they look ok. Have you got the SVG handy and I can install it?
Cheers!
-
@movisman said in Chicuelo Theme:
ither the word "alpha" in the centre or right justified underneath. Unless i'm confused it should look ok? Are you suggesting the logo would become too large because it's square?
This is where a maximum height in theme.xml comes in, which is what i've adjusted on my local copy (which is also on that video preview I sent). It reduces the size of square logos like Master System which look a bit too big at the moment, but keeps the width of the wider ones.
However, all that being said, all on one line is still likely toWhat I want to mean is that the Alpha word would be super big under the final burn text, so the logo will be a little bit heavy as a logo. If you prefer I can send you the SVG file and you make the proportions you want
-
Ah ok, so what I meant is the same as the image you posted but with the 'alpha' the same size as 'final burn'. With my modified theme.xml it should not appear too large but would need to try it.
I am happy with whatever logo you choose for FBA - it's your theme of course and you are much better at design than I am!! :) the original one on a single line will look fine i'm sure. I am just happy to contribute where I can to help complete some of the other systems and tidy up the XML where possible.
How would you like me to provide all the logos I created? Do you want me to email them to you or post up a download? Or raise a PR on github? I also have a slightly modified theme.xml which makes my 'no-margin' logos appear nicely.
Thanks!
-
@movisman
We can make a PR via GitHub. If you want, get the latest version and then apply your changes so I can pull them again.
You will find the new FBA logo if you update your branch -
@chicuelo @movisman
I love these new logos :) I was planning to make a pull request to add the MAME and FBA logos, I'm glad people with better design skill than me got to it :)On a very personal note, I would also love to have different images for the various arcade emulators :)
On a pi, I have heard FBA is best for most shmups and fighting games, whereas MAME is better to emulate 80's arcade.
So, I would put Ryu as the FBA character, and Donkey Kong as the MAME character.Ryu : here with many more here.
DK : here, here or hereI would do them myself, but I clearly don't have the skill to integrate the characters as well as you do with the background, and the other images.
-
@cosmo0
For mame what do you think about sunset riders, Cadillacs and dinosaurs or ghouls and ghosts? I thinks they are going to fit better with the theme due the background posibilities. -
Ghouls and Ghosts would be nice :)
SR and C&D are more FBA-type games I think. -
-
@movisman said in Chicuelo Theme:
I will raise a PR for my changes, just trying to learn some basic github command line stuff, will create a branch, put all my changes in and raise the PR for you to inspect.
From the top of my head:
git remote add source urlofchicuelogit
git fetch source
git rebase source/masterSorry but I can't add the URL of the Chicuelo git or my post is flagged as spam.
This adds the Chicuelo git repository as a "remote" (a server), then fetches and reapplies all modifications made to it, then reapplies your modificationsgit checkout --branch nameofyourbranch
This creates a branch for you to work on.
Then do your modifications.git add .
git commit -m "your commit message"
git push -u origin nameofyourbranchThis adds all files to the commit (staging area), commits it, then pushes it to your Github repository. The -u is shorthand for --set-upstream and lets you just "git push" next time witout specifying the remote and branch names.
Then create your pull request in Github.
Hope this helps :)
-
Hey, thanks a lot for that - most useful! I wish I had seen some of this an hour ago as been reading how to do it via command line, and in fairness, I have pretty much exactly done exactly the above, with the exception of the first bit. I cloned the repository from my fork, then added Chicuelo's master as upstream.
I then created a branch called updates, switched to that, copied my changes in, and now i've pushed those to the remote. I was just about to raise a PR now.
Sound about right?
I didn't do the git rebase stuff, what is the benefit of using this?
Cheers!
-
Okay! So you should have a PR now here:
https://github.com/chicueloarcade/es-theme-Chicuelo/pull/4The description contains all details about files changed.
Hope you can merge this into master, then I will delete this branch.
Thanks!
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.