Add hex color input

This commit is contained in:
rajchales-monito
2026-07-24 13:51:11 +02:00
parent 8f5779133f
commit 8178b4a4e7
3 changed files with 32 additions and 3 deletions
+13
View File
@@ -166,6 +166,19 @@ label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
.setting-switch input:checked { background: var(--brand); }
.setting-switch input:checked:before { transform: translateX(18px); }
.color-field input { margin-top: 2px; }
.color-row {
display: grid;
grid-template-columns: 58px minmax(0, 1fr);
gap: 8px;
align-items: center;
}
.color-row input[type="color"] {
width: 58px;
}
.hex-input {
font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
text-transform: lowercase;
}
.list-tools {
padding: 10px 14px;
border-bottom: 1px solid var(--line);