• 2024-09-04十六进制转RGB ---颜色-color
    ```//十六进制转RGBfunctionhexToRgb(hex:string){constresult=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);returnresult?[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16),]:null;}functionadjustColor(color: