ngscheurich/fresh-pots

View on GitHub
app/frontend/js/colors.js

Summary

Maintainability
A
0 mins
Test Coverage
// export const PRIMARY_RGB = "79, 35, 171";
export const PRIMARY_RGB = "0, 0, 0";

export function primaryColor(alpha = 1.0) {
  return `rgba(${PRIMARY_RGB}, ${alpha})`;
}