2021-07-07 00:24:20 +03:00
|
|
|
<!-- PALETTE -->
|
|
|
|
<div id = "palette-block">
|
|
|
|
<button class="close-button">{{svg "x.svg" width="20" height="20"}}</button>
|
|
|
|
|
|
|
|
<h1>Edit palette</h1>
|
|
|
|
|
|
|
|
<div id = "colour-picker">
|
|
|
|
<div id = "cp-modes">
|
2021-12-05 01:11:21 +03:00
|
|
|
<button id="cp-rgb" class="cp-selected-mode">RGB</button>
|
|
|
|
<button id="cp-hsv">HSV</button>
|
|
|
|
<button id="cp-hsl">HSL</button>
|
2021-07-07 00:24:20 +03:00
|
|
|
|
|
|
|
<div id="cp-colour-preview" class="cp-colour-preview"></div>
|
2021-12-05 01:11:21 +03:00
|
|
|
<input id="cp-hex" type="text" value="#123456"/>
|
2021-07-07 00:24:20 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id = "sliders-container">
|
|
|
|
<div class = "cp-slider-entry">
|
|
|
|
<label for = "first-slider">R</label>
|
2021-12-05 01:11:21 +03:00
|
|
|
<input type="range" min="0" max="255" class="colour-picker-slider" id="first-slider"/>
|
|
|
|
<input type = "text" value = "128" id="cp-sliderText1"/>
|
2021-07-07 00:24:20 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class = "cp-slider-entry">
|
|
|
|
<label for = "second-slider">G</label>
|
2021-12-05 01:11:21 +03:00
|
|
|
<input type="range" min="0" max ="255" class="colour-picker-slider" id="second-slider"/>
|
|
|
|
<input type = "text" value = "128" id="cp-sliderText2"/>
|
2021-07-07 00:24:20 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class = "cp-slider-entry">
|
|
|
|
<label for = "third-slider">B</label>
|
2021-12-05 01:11:21 +03:00
|
|
|
<input type="range" min = "0" max = "255" class = "colour-picker-slider" id = "third-slider"/>
|
|
|
|
<input type = "text" value = "128" id="cp-sliderText3"/>
|
2021-07-07 00:24:20 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id = "cp-minipicker">
|
2021-12-05 01:11:21 +03:00
|
|
|
<input type = "range" min = "0" max = "100" id = "cp-minipicker-slider"/>
|
|
|
|
<div id="cp-canvas-container">
|
2021-07-07 00:24:20 +03:00
|
|
|
<canvas id = "cp-spectrum"></canvas>
|
|
|
|
<div id="cp-active-icon" class="cp-picker-icon"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id = "cp-colours-previews">
|
|
|
|
<div class = "cp-colour-preview">
|
|
|
|
#123456
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id = "cp-colour-picking-modes">
|
2021-12-05 01:11:21 +03:00
|
|
|
<button id="cp-mono" class="cp-selected-mode">Mono</button>
|
|
|
|
<button id="cp-analog">Nlgs</button>
|
|
|
|
<button id="cp-cmpt">Cmpt</button>
|
|
|
|
<button id="cp-tri">Tri</button>
|
|
|
|
<button id="cp-scmpt">Scm</button>
|
|
|
|
<button id="cp-tetra">Tetra</button>
|
2021-07-07 00:24:20 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id = "palette-container">
|
|
|
|
<ul id = "palette-list">
|
2021-12-06 13:26:42 +03:00
|
|
|
<li style = "background-color:rgb(255,0,0);width:40px;height:40px;" onmousedown="PaletteBlock.startRampSelection(event)"
|
|
|
|
onmousemove="PaletteBlock.updateRampSelection(event)" onmouseup="PaletteBlock.endRampSelection(event)"></li>
|
|
|
|
<li style = "background-color:rgb(0,255,0);width:40px;height:40px;"onmousedown="PaletteBlock.startRampSelection(event)"
|
|
|
|
onmousemove="PaletteBlock.updateRampSelection(event)" onmouseup="PaletteBlock.endRampSelection(event)"></li>
|
2021-07-07 00:24:20 +03:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="pb-options">
|
2021-12-06 13:26:42 +03:00
|
|
|
<button title="Add colours to palette" id="pb-addcolours">Add colours</button>
|
|
|
|
<button title="Remove colours from palette" id="pb-removecolours">Remove colours</button>
|
2021-07-07 00:24:20 +03:00
|
|
|
</div>
|
|
|
|
</div>
|