Latest solutions
Job listings with filtering using Next.js as a learning project
#cypress#next#redux#redux-toolkit#styled-componentsSubmitted over 1 year agoTodo App using React + Tailwind + Framer Motion + Firebase + Firestore
#firebase#framer-motion#react#typescript#tailwind-cssSubmitted almost 2 years agoTodo app using React + Tailwind + Framer Motion
#framer-motion#react#tailwind-css#typescript#animationSubmitted almost 2 years agoIP Address Tracker using React + Tailwind + Leaflet + Express
#express#node#react#tailwind-css#viteSubmitted almost 2 years agoHuddle Landing Page using React.js + Tailwind CSS + Framer Motion
#animation#framer-motion#react#tailwind-css#typescriptSubmitted almost 2 years agoClipboard Landing Page using React.js + TypeScript + Material UI
#animation#material-ui#react#typescript#accessibilitySubmitted about 2 years ago
Latest comments
- @ImFropZSubmitted about 2 years ago@rashidshamlooPosted about 2 years ago
There is no native function to do that in CSS. but in SASS/SCSS you can use the "rgba" function to add alpha to a color variable:
$clr-red: hsl(0, 100%, 50%); main { background-color: rgba($clr-red, 0.5); }
To see a list of other SASS color functions click here
Marked as helpful1