operator-cursor
Version:
👻 A phantom cursor that navigates and interacts with web pages like a human operator
25 lines (23 loc) • 519 B
JavaScript
// ==========================================
// 📄 src/utils/color-utils.js
// ==========================================
export class ColorUtils {
/**
* Convertir HEX a RGB
*/
static hexToRgb(hex) {
// ... mover desde ghost-cursor.js ...
}
/**
* Aclarar un color
*/
static lightenColor(hex, percent) {
// ... mover desde ghost-cursor.js ...
}
/**
* Oscurecer un color
*/
static darkenColor(hex, percent) {
// ... nueva funcionalidad ...
}
}