Time for another Pixeljoint palette comp which is open to everyone and is quite simple.
Submit your 13 color unique & original palette.
You must name the HEX values and NO black - 000000 or white - FFFFFF
The winning palette will be used in PJs next collab and a spiffy trophy added to your profile.
+1000 Pts
+500 Pts
+250 Pts
+100 Pts
*honorable mentions may be given for this contest as needed.
See the forum thread to post your entry and read the rules HERE
Contest closes on Thursday, September 5, 2013. OPEN!
Even Paint Shop Pro 7 from the year 2000 can do Hex codes though it refers to them as 'HTML Codes' in it's colour picker (which is fair enough as you do use Hex codes in HTML to set colours).
thanks jalonso, and thanks to Friend aswel, i shall get onto my pallet asap then.
@Hapiel: Some info in the docs: Palette Analysis
@Jal: Converting a value to HEX is really hard, it requires this whole inbuilt function: hex = string.format("%x",dec)! :D. (And I've built a big library of functions over time, so it's not like things have to be done from scratch, hehe)
Ok, started a script, here's what it outputs so far (it ignores duplicates).
Speaking of your amazing scrips which helped me create what I have so far, care to perhaps explain what goes on in your analyse images? I posted one in the topic..
That would be useful actually, I'm a common user of your ToolBox, especially when working with colors.
OMG! how is that figured out
We might have to edit your handle to smartiepoop
Hmm, that could be a good idea for a GrafX2 script; a textfile output of the palette with RGB + HEX values (and maybe more)
Or you could do the math: 250, 20, 40 = 11111010, 00010100, 00101000 = FA, 14, 28 = FA1428
you can also try a new pixel software such as gimp, which readily tells you hex values with the eye dropper
Bohnz, work on your color palette then use PJs spec checker which will produce the hex values you can then copy them into your entry.
bookmark it ;)
I would enter but I'm not sure how to accurately define hex values, I just use paint so: hue, sat, lum is what I'm accustomed to.
I'm looking forward to seeing your palette/s XD!
You know so much about colors anyway. you need a rainbow trophy
@Ashkin, if you do post an example of your palette in use then as we vote on the winners it certainly will help. Check out past palette comps and see how they developed. They are in the forum and the news section of the gallery.
Notice that in the thread for this comp FlyGuy has a palette with a sample. Doing that is cool, k.
Yay, another chance to win the Thumb-Up trophy! :)
Another question- is it advised to attach mockups to demonstrate your palette in action? Can I do that?
@AtskaHeart; you can make several palettes. But what if the theme is none of these?
the good thing about everybody not tailoring their submissions to a specific theme is that in the end we'll end up with a number of nice pallets suited for different situations, even if only one winds up the winner.
Then I guess you can't make several specific palettes to support the majority of possible themes (eg forest, magma, cave, underwater, desert, space, etc) but rather make a palette that is close to be able to support almost all themes.
To answer all of the questions - a good all-round palette always comes before a spesific theme palette. But if a good palette doesn't quite cover the "secret theme" then it's obviously not good enough.
To be more spesific: Let's say I made a really good looking palette without using blue and the theme turned out to be underwater (which is last collab's theme). My palette obviously doesn't get too many votes, even if it would go very well with another theme.
I guess it's good to make a palette that combines uniqueness (which shows some general style in all the colors) and flexibility (like DB's)
I assume no, as in previous palette challenges. The good news is you can have more than one entry:)
So yeah, really no guide about what the palette should suite for?
Huh, interesting, haven't seen one of these in my short time here. I'm not very good at palette making but I'll try just for fun- I assume there's no theme and it's just meant to be 'general purpose', like Dawnbringer's?
Time to give people more info than they want! Hex codes come from RGB values, which are generally 8 "bits per channel". This literally means that full white (#FFFFFF, or R255 G255 B255) is 24 bits, or 11111111 11111111 11111111 in binary.
Hex digits are 0-F, and correspond to Binary 0000 - 1111 (since 1111 binary = 15 decimal = F hex). This is why programmers like hexidecimal, because it makes 1111 1111 binary into #FF (4 binary digits = 1 hex digit exactly!). Binary to decimal is much more complicated (128*digit1 + 64*digit2 + 32*digit3 + 16*digit4 + ... + 1*digit8).
The best way I know to get hex values is GraphicsGale, which is free. =) You just select two colors in your palette and choose "Copy RGB Values" to get a list of all the colors between them in the clipboard.
after selecting, paste the list in a text file:
#44B28E #808080 #800000 #804000 #808000 #008000 #008080 #000080
#800080 #FF0000 #FF8000 #FFFF00 #00FF00 #00FFFF #0000FF #FF00FF