tints-shade-generator

An web application that generates tints and shades of various colours based on the user's input. (by dha-stix)

Tints-shade-generator Alternatives

Similar projects and alternatives to tints-shade-generator

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better tints-shade-generator alternative or higher similarity.

tints-shade-generator reviews and mentions

Posts with mentions or reviews of tints-shade-generator. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-01.
  • Building a tints and shades colour generator with React and Values.js
    5 projects | dev.to | 1 May 2023
    import { Box, Button, Flex, FormControl, Heading, Icon, Input, Text, Alert, AlertTitle, AlertIcon, } from "@chakra-ui/react"; import React, { useState } from "react"; import { FaGithub, FaTwitter } from "react-icons/fa"; import { useNavigate } from "react-router-dom"; const Home = () => { let [colour, setColour] = useState(""); const [alert, setAlert] = useState(false); const navigate = useNavigate(); const redirectPage = (e) => { e.preventDefault(); if (colour.startsWith("#") && colour.length >= 4) { //👇🏻 removes the # sign before redirecting the user colour = colour.substring(1); return navigate(`/colour/${colour}`); } else { setAlert(true); } }; return ( TintTastic Effortlessly {" "} create beautiful color palettes for your projects TintTastic is a user-friendly tint and shade generator that will elevate your color game in no time. setColour(e.target.value)} /> Generate Shades {alert && ( Only accepts hex code values! )} ); }; export default Home;

Stats

Basic tints-shade-generator repo stats
1
1
4.3
about 1 year ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com