Lut Generator 0.15 May 2026
<script> (function() // ----------------------------- CONFIGURATION --------------------------------- const LUT_SIZE = 16; // 16x16 look-up table const CELL_SIZE = 32; // 512/16 = 32px per cell const CANVAS_SIZE = LUT_SIZE * CELL_SIZE; // 512
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <title>LUT Generator 0.15 | Programmable Look-Up Table Canvas</title> <style> * box-sizing: border-box; user-select: none; /* cleaner UI interaction, but text select remains for code if needed */ body background: linear-gradient(145deg, #101418 0%, #0c0f16 100%); font-family: 'Segoe UI', 'Fira Code', 'Monaco', 'Cascadia Code', monospace; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; padding: 20px; lut generator 0.15
Here is the piece, formatted as a ready-to-use HTML document. It generates a programmable 16×16 Look-Up Table (LUT) visualization with color mapping and value display. // 512 <
.slider-container label font-size: 0.75rem; font-weight: 500; color: #8aaee0; meta name="viewport" content="width=device-width
button:hover background: #2d405b; transform: translateY(-2px); border-color: #5f8ec9; color: white; box-shadow: 0 8px 16px rgba(0,0,0,0.3);