canvas {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    display: block;
}

.canvas-wrapper {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: none; /* Optional: disables default touch behavior like panning/zooming */
}

canvas, 
canvas * {
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: none;
}


#color-info {
    font-size: 13px;
    font-weight: light;
    color: rgba(0, 0, 0, 0.383);
}