Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/848a82e2ffd821c6e888af7dd8056ec2a4b8bfd5fc0efd8d2e0ec4b2eb3f210e157aec7171c594758b169518a091c3e92efae87360b071640049f74cbb9ff8
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

29 lines
763 B
Text

import {cubehelix as colorCubehelix} from "d3-color";
import color, {hue} from "./color.js";
function cubehelix(hue) {
return (function cubehelixGamma(y) {
y = +y;
function cubehelix(start, end) {
var h = hue((start = colorCubehelix(start)).h, (end = colorCubehelix(end)).h),
s = color(start.s, end.s),
l = color(start.l, end.l),
opacity = color(start.opacity, end.opacity);
return function(t) {
start.h = h(t);
start.s = s(t);
start.l = l(Math.pow(t, y));
start.opacity = opacity(t);
return start + "";
};
}
cubehelix.gamma = cubehelixGamma;
return cubehelix;
})(1);
}
export default cubehelix(hue);
export var cubehelixLong = cubehelix(color);