Introducing Gradient King - Never again run out of gradients! π
Gradient king helps you generate awesome gradients for your next project.
Hello Geeks π
This is Savio here. I'm young dev with an intention to enhance as a successful web developer. I love building web apps with React. I have proved my superiority in frontend technologies. Due to exams, I wasn't able to attend the last hackathon powered by vercel, but now I'm super excited to share my biggest ever project made as a submission for Amplify Hashnode Hackathon
Little flashback
I constantly need gradients for my projects, yeah, every developer needs them. Gradients are very much important as they give good UX to the users. So, I started planning an app on it and it then enlarged to grab awesome features. The project is never finished, it is still becoming better and better. I'm glad I have created useful stuff for the dev community.
Introducing Gradient King
Gradient king solves all your gradient problems. It provides a huge collection of gradients and you could easily choose one. Besides It, we also provide a well-efficient gradient generator where you could upload your image and grab the gradients from it. How cool is that π
Inspiration
I was struck by these 2 awesome articles The logic of good gradients and The Secret of Great Gradient
Have you ever noticed how some colors and gradients look so natural and beautiful, while others look so unnatural and weird? The reason for this can be found somewhere between our pupil and our visual cortex. The difference between natural and unnatural is just familiarity or maybe nature is created to perfectly to fit together with our souls. The gradients we identify as beautiful are similar to what we see in nature. Conversely, a combination of colors our eyes have never seen before would rightly evoke feelings of discomfort and unease.
And this is what gave me the idea to build an awesome gradient generator where you could upload your local images π and get them converted into gradients π¨
This was the first idea π― in my mind and then I got to make the app more advanced with more features
TL;DR
Please watch the short demo (use headphones π§)
So far, these are the features Gradient King have
100+ gradients
Gradient King is richly supplied with gradients for you to copy. As this is an open-source project, the list will increase for sure. π You're getting access to a huge amount of gradients and simply clicking on the
Copy CSS
button copies the CSS code of that gradient to your clipboard πGenerate your own gradients
Gradient King provides you a playground where you create gradients from your local images. π
Indeed Mother Nature is rich in colors, So why should we waste this opportunity?
Search
Gradient King is now able handle search for anything on the page - Colors, authors, contributors, etc π
Seperate page for each gradient
Gradient in a small part of a page may not be useful for you as you have to use in big area. No problem, just click on a gradient and it will open in a relatively larger area πͺ
PWA, Installable app
Yeah, it was a task but I accomplished it. I managed to get passed on all the Progressive Web App checks. Now, you're able to install the app on your local device and works offline π»
Contributor page
Are you an open-source enthusiast, this is for you. We proudly show our contributors on our main website and we love to β€οΈ Go ahead and give a pull request, get featured on our contributor's page π¨βπ»
Dark mode
Dark mode π, an awesome feature everyone loves and cares about. Of course, I found time to work on it and make it happen. The dark mode is acceptable for all pages.
Fully Responsive
Responsiveness is an important part of a website π±, it doesn't matter why it should be, it just thinks you should do it. Yeah, I did get the same feeling.
I know developers are not gonna code on their smartphones but as a web developer, it is my responsibility to add responsiveness to my project.
Free and Open Source
I'm an open-source lover, I love to be π. So, inviting all devs to view the code as well as contribute to the app. github.com/saviomartin/gradientking
Minimal UI, Lightning Fast, Elegant animations
Thanks to Material UI, React Router Dom, Animate on Scroll and Animate.css. These awesome libraries helped me to add these awesome UX features. I super sure that they did a great job in the UX of my app β‘οΈ.
Everything loads super fast (without even loading), So appropriate to use on daily basis.
Gradient King is super productive enough to grab the best gradients for your next app β¨οΈ
π» Built with
- React
- CSS
- Jquery
- Material UI: for styling and Icons
- Animate.css: for smooth Animations
- AOS: for scroll animations
- react-router-dom: for routing
- AWS Amplify: for hosting
Planning, Building, and Deploying
Oh yeah, it was time-consuming, but I enjoyed it.
Designing
I used Figma for my design, I'm not an expert but I know how to do basic designing and prototyping.Planning
Notion is an awesome tool to be cared for. It is super productive enough for me to plan my daily work. I used Pomodoro timers too, I want to be productive.Time to code
I'm a true React lover. I use it for all my projects and I did use it for creating Gradient King
npx create-react-app gradientking
And it is how it started, coding components, designing it, getting errors, copying code from StackOverflow, debugging, and Of course, it continues... I wanted my app to get the data from a
JSON
file. So, I useduseEffect
to make everything work. Like this πconst [data, setData] = useState([]); const getData = () => { fetch("data.json", { headers: { "Content-Type": "application/json", Accept: "application/json", }, }) .then(function (response) { console.log(response); return response.json(); }) .then(function (data) { console.log(data); setData(data); }); }; useEffect(() => { getData(); }, []);
And I'll the respose as an array so that I could
map
it or pass it to other pages.And the next thing was that to implement Dark Mode π. I created a component
useLocalStorage.js
, I did it to avoid duplication of the same code. Now everything becomes fast and easy, we can now uselocalstorage
like this πconst [dark, setDark] = useLocalStorage("DarkMode:", true);
And now, we're able to store our data in
localstorage
Now, I made a code that if dark mode is true and
dark
class and else dark mode is false keep it same. So, we just have to change some of ourCSS
like this π.dark .App { background: #333; }
And that's it. Now, we have dark mode in our app. Next, to make the app responsive, I used
@media
queries. Like this π@media (max-width: 500px) { .preview { width: 90%; height: 70%; } }
To handle the search, it was easy coding just need a bit of logic. There is an inbuilt function called
find()
and it helps π€.const findSearchWord = (e) => { if (e.keyCode === 13) { window.find(e.target.value); } };
and then we should render our component.
<input type="text" placeholder="Search for a Color or Author" className="input" onKeyDown={(e) => findSearchWord(e)} />
And yeah, the total build process is far longer, I just told you the main part of it. Head over to Github Code and find more. After the basic completion of the code, I pushed it to Github and then whenever I need to add more stuff I did a new
commit
.Deployment
Honestly, I'm super new to Amplify. I watched a lot of youtube videos in fact did some tutorial to get started with Amplify. My friend helped me lot, he guided me to use Amplify and helped me in hosting the app π Amplify is super powerful, it has a much larger space. I was new to Amplify so I wasn't not knowing how to use these, but I'm sure I'm gonna learn more on AWS. It is yet to be explored for me π
Feel free to use Gradient King: https://dev.di7tazxmp7xob.amplifyapp.com/
Challenges
Challenge | Solution |
adding scroll animations | Used AOS library |
User want to contribute an Idea | Made a feature request template |
Change different URLs without loading | Used react-router-dom |
Generate image by uploading faster | Converted it into base64 value |
user want to see the gradient in a bigger way | Implemented a page where it show the clicked gradient |
Notification withing the app | Used react-toastify library |
User want to report a bug | Made bug template |
Make the app 100/100 on PWA Check | Optimised app, solved errors |
Responsiveness of the app | Used @media queries |
Stop duplication of same user details in contributors page | Wrote a jquery code to solve it |
β¨οΈ What's next
I'm pretty sure that I will be constantly adding more and more extraordinary features as I consider this as my biggest project to date. These all are the things I have planned to do in the next few days
- Voting (user can upvote a gradient)
User authentication(update 2nd March π’)- Comments
Better Icons (act as a logo)(update 2nd March π’)- Generate gradient from a website URL (in progress)
- Generate gradient from a word, eg: love - red gradient
- Download Gradient
- Chrome extension which does all the features
Share on Twitter(update 27th February π’)Contributors in the Readme(update 28th February π’)404 page(update 1st March π’)- Launch on Product Hunt
π° Contributing
As I have said earlier, Gradient King is an open-source project π€ and I'd like to invite all devs over the planet to contribute to the app. Here is how you can contribute.
Head over to public/data.json
and add your gradient at the bottom of the list. Here is an example contribution π
Make sure that you have all the required items
{
"id": 104,
"githubUsername": "saviomatin",
"colors": [
"#3CA55C",
"#B5AC49"
]
},
Please contribute using GitHub Flow. Create a branch, add commits, and open a pull request.
Please read CONTRIBUTING
for details on our CODE OF CONDUCT
, and the process for submitting pull requests to us.
π‘οΈ Licensed under MIT
π Wrapping Up
Yeah, that's a wrap. Hope you enjoyed Gradient King. Feel free to use it for your future projects. Share with other friends. Let them know of the resource. Do not hesitate to share your feedback. Share on twitter, tag me @saviomartin7
π Lets connect
πΈ Feedback
Gradient King need your feedback to improove. Help Gradient King by adding your valuable reviews. Support the development! π
π’ Changelog
These are the awesome features that I have developed after the publishing of the article. π
Share on Twitter (February 27 β³οΈ)
You can now easily share on Twitter π¦. Just click on the Twitter icon in the footer and you will be opened to Twitter in a new browser with a pre-defined text.
Contributors in the Readme (February 28 β³οΈ)
We love to show our proud contributors π¨βπ». Now, you can see them in the GitHub readme also. Feel free to contribute in the app.
404 page (March 1 β³οΈ)
If you go to a page that doesn't exist like
https://dev.di7tazxmp7xob.amplifyapp.com/asada
orhttps://dev.di7tazxmp7xob.amplifyapp.com/404
you will now get this 404 page, where you could jump back to home π . 404 page also support Dark Mode π.New Icons (March 2 β³οΈ)
New Icons are here! π Gradient King has now got super stylish gradient icons. This could help as this icon will replace
favicon
and act as a logo when Users install Gradient King on their device π»π₯οΈAdd Authentication (March 2 β³οΈ)
Added authentication to the project. Now, you can Sign In using your google account. It is persistent. It won't ask you to login when you refresh again π.
// Todo: implement upvoting β²
π Support
β UI/UX/ML | βοΈ Technology Blogger | π€ Speaker
Great project Savio. I'm sure it is going to help many in the dev community. I am looking forward to contributing to it in the future. Great work.
Thanks a lot Tapas Adhikary, Glad you liked the app. Feel free to contribute in the project. It is so nice to be heard I helped the dev community. π¬ Thanks for your feedback. π
Student@GEU
This is an awesome project for developers, it will help me a lot in my projects. Amazing Work Savio Martin
Thanks Gaurav Tewari, I'm glad I could help you as well as the entire dev community π Feel free to contribute to the build process. Thanks for your feedback π
Learning and Sharing | Aspring Full Stack Web Developer
This is an awesome project. I'm looking forward to contributing to the project.
Thanks Favourite Jome, I'm glad you liked the project. Go contribute it π. Thanks for the comment π
CS Undergrad ,Tech Enthusiast, Violinist
This is super cool stuff for developers. Amazing work Savio Martin also a nice write up
Thanks for this amazing feedback Hrithwik Bharadwaj, Feel free to contribute to the app. Glad it helps ππ
Savio this looks preety amazing. I have saved and I will surely contribute to this app in the future.
Thanks, brother. Appreciate your feedback. Glad you found this useful. Feel free to contribute to the app. Thanks Rahul ππ
Great work savio, this will help me in my future works and very excited to contribute β€οΈ
Thanks Jobin S, I am happy to help you in your future projects. New features are on the way. Stay tuned. Feel free to contribute to the build. Thanks for the feedback β¨οΈπ¦
The Hilarious Coder | Tech Enthusiast
Simply awesome work Savio, It is going to be useful in a lot of my future projects.
Thanks Aswin Asok, Glad you found the app useful. Feel free to use the app as well as contribute to the work process. Thanks for the feedback π¦
always ready to learn
this is really a amazing project
Thanks Anshu Meena, Feel free to contribute to the app. Thanks for your feedback. Glad you liked the app ππ
Such a fabulous tool π.
Never found an awesome tool for gradients like this
Thanks you π Lalit, Thanks for the amazing feedback. Feel free to use Gradient King as well as contribute to the build. Glad you loved the project
Stunning project, bookmarked and will contribute to the app in the future. I have already started using it for my freelance works.
It is great to be seen that you already started using it for your projects. Feel free to contribute to the work. Thanks for your feedback. π€π
Frontend Web Developer
Great app brother, glad to see a lot of amazing gradients and awesome features. I will surely contribute to this project. π
Thanks Sanvi Merin, I'm glad you found the project helpful. Feel free to contribute to the project. Thanks for the feedback. π»
Thoughts, insights, and lessons from the IT Consulting world.
Amazing work!
Very nice project and the article was easy to read π
Learning web development, running a YouTube channel
Now I don't have to find cool gradients! Thanks a lot Savio. π
That's awesome Usman Sabuwala, I'm glad I could help you. Feel free to use the gradients as well contributing in the project. Thanks for the awesome feedback! π
Web Developer || UI & UX Designer
It's Amazing Bro, You are really awesome. This will help me in my future projects. Thank You for this.
Thanks Rayyan Rasheed. Glad this project helps you in future. You rock π€Thanks for your feedback. Feel free to contribute to the work process.
Savio Martin Sure as soon as possible I will be there in the contributors list in this GitHub repo
Software Development Engineer @ 91Wheels | Mentoring in Javascript & ReactJS
The user interface looks simply great man.
Do checkout one of my application which I built yesterday.
You can find online cohorts and community from this platform.
Thanks Deepak Kumar, Glad you found the UI great. I just thought that UI should be clear, simple, and minimal. Yeah, btw thanks for your feedback. ππ
Full stack web dev
Great article Savio Martin, loved the project and saved it. Btw great use of gifs and mockups.
Thanks, Martin. Feel free to contribute to the app. Thanks for your comment. Thank you ππ
Trying to become a better person than yesterday
You are an inspiration bro....Good Job!!! So, When did you start this project? May I know some resources that you have been learning from?
Hey Mohith Gupta Korangi, Thanks for this amazing feedback. I enjoyed this one.
It took one and half weeks to plan and design the UI. After then, I started developing the app. My most important aim π― was that users could add local images and generate gradients from them.
Here are some of my learning resources
- Fetch Data from a JSON File in a React App
- How to use localStorage with React
- The last guide to the useEffect Hook youβll ever need
- The Ultimate Guide to JavaScript SEO
- Transform a React App into a Progressive Web App
- A Complete Guide to Flexbox
- JavaScript coding standards
- Customized CSS: another reason to love Hashnode more
and many more... These are some of the main learning resources that got me inspired or helped me to learn the stuffs. Thanks for your feedback brother ππ»
Comments (38)