- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
import {hue} from "./color.js";
|
|
|
|
export default function(a, b) {
|
|
var i = hue(+a, +b);
|
|
return function(t) {
|
|
var x = i(t);
|
|
return x - 360 * Math.floor(x / 360);
|
|
};
|
|
}
|