Atari Jaguar Console variations have been added to the repo.
Forgot to push the last variation set to the repo which has actually been added now.
Did another full day of working on HEX to koko-aio Color Converter github page.
Add
β Small personal watermark
β Console Color Swatches
Change
β Only Contrast Settings 0.70 to 2.40 can be selected
Note: The Console Color Swatches settings are copied to the clipboard once clicked on.
Preview
After a fun and error filled nightβ¦
Add
β RGB conversion
Change
β Github page has been renamed to koko-aio Color Converter
Link: https://hgoda90.github.io/koko-aio-Color-Converter/
Preview
Note: Unrelated but I somehow just found that you can use html tags in posts with a few other tricks
Bezel Color Converter Update
Add
β Mega Bezel Conversion
Change
β Github page layout
β Change Swatches to be multiple colors
Preview
Bezel Color Converter WIP
I came up with the unnecessary idea of adding a slider, exclusive to Mega Bezel of course, that gets the settings for image layers. I should be able to finish it tonight.
Bezel Color Converter Update
Add
β Mega Bezel Layer Slider
β NES Color Swatches
Preview
https://hgoda90.github.io/Bezel-Color-Converter/
Edit: Cleaned up some of the functions
Made a few more adjustments and separated the color codes into a separate file.
Change
β Swatch design
β Button format
Fix
β Errors with the slider
Note: The Hold button is the next idea, which will keep the current settings in the text so multiple different colors for the layers can be used.
Preview
Update: Hold button has been added. I wanted to add a clear button but couldnβt get it properly which I am able to now. So that will be next with cleaning up some of the javascript some more.
Just an FYI, I was using append() and just had to do $(".conversion").val($(".conversion").text()+bezelPresets).text($(".conversion").text()+bezelPresets);
I can tell you that I have ran into a lot of typical amateur errors, ie spelling errors, with this and it does get nerve wrecking but worth it.
Well it didnβt take as long as I thought it would. If there is a feature you would like to see than let me know
Add
β Clear Button
Change
β Swatches to Jewels; just keep playing around with them
Fix
β Change multiple different errors
Note: I jumped the gun a few times on the errors, so there is going to be 5 commits.
Preview
Add
β 3 different styles of Console Color samples
β World and US buttons for the different spellings of Colo(u)r
Note: Sample Style buttons on the left are Jewels, Palette and Swages in that order. The buttons on the right control the spelling of Colo(u)r.
Just a quick update, a Color Picker has been added. To access it just click on the color vision square.
Update: added a function to the code that allows the color picker to change values and square color
Just an FYI for everybody, HSB conversion is next on my list if I can find a hsbToHEX function somewhere.
I know nothing about js, but:
Thanks @kokoko3k. I found a function over on stackoverflow, I am just trying to decide on how to do the slider since there are going to be three formats.
function HSVtoRGB(H, S, V)
{
var V2 = V * (1 - S);
var r = ((H>=0 && H<=60) || (H>=300 && H<=360)) ? V : ((H>=120 && H<=240) ? V2 : ((H>=60 && H<=120) ? mix(V,V2,(H-60)/60) : ((H>=240 && H<=300) ? mix(V2,V,(H-240)/60) : 0)));
var g = (H>=60 && H<=180) ? V : ((H>=240 && H<=360) ? V2 : ((H>=0 && H<=60) ? mix(V2,V,H/60) : ((H>=180 && H<=240) ? mix(V,V2,(H-180)/60) : 0)));
var b = (H>=0 && H<=120) ? V2 : ((H>=180 && H<=300) ? V : ((H>=120 && H<=180) ? mix(V2,V,(H-120)/60) : ((H>=300 && H<=360) ? mix(V,V2,(H-300)/60) : 0)));
return {
r : Math.round(r * 255),
g : Math.round(g * 255),
b : Math.round(b * 255)
};
}
If anybody is confused about the HSVtoRGB instead of HSVtoHEX, I can use the rgb2hex() function already included. I am wanting it since the color picker only communicates in hex.
careful when you look at HSV vs HSB etc. While apps like Photoshop use HSB notation, the values are actually HSV.
I would make sure to do a few tests to make sure the colors look correct after the conversion.
I will definitely do a few color tests. From my research it says that HSV is another name for HSB.
Add
β HSB format
Change
βConvert button has been moved next to the textarea as a +
β Swapped the placement of the option switches and text
β Mega Bezel exclusive settings are now just disabled when koko-aio is selected
Bezel Color Converter Update
All because @Brandon8o asked about Duimonβs Graphics with koko-aio.
Add
βEdit button to change file paths
β Save button to save settings to preset file
β Shader/Retroarch button to add reference paths
β Image button to add image paths
β Bootstrap tooltips to allow to see what each icon button does
Change
β The HSB format inputs changed to hsb(0deg,0%,10%); just a play on the HSL CSS format
β Made the koko-aio style able to use hold again
Note: The koko-aio image is default bg_under and Mega Bezel images are based on what layer is selected in the slider.