agrega toggle de modo claro/oscuro con persistencia en localStorage

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-23 18:20:08 -04:00
parent 36a40938c7
commit ca021cc3f7
5 changed files with 67 additions and 19 deletions
+2 -2
View File
@@ -197,7 +197,7 @@ function clearEmoji(id) {
.emoji-picker { display: flex; flex-wrap: wrap; gap: .25rem; margin-top: .35rem; }
.emoji-opt {
background: var(--surface);
border: 1px solid #333;
border: 1px solid var(--border2);
border-radius: 6px;
font-size: 1.15rem;
width: 34px; height: 34px;
@@ -205,7 +205,7 @@ function clearEmoji(id) {
display: flex; align-items: center; justify-content: center;
transition: background .12s, transform .1s;
}
.emoji-opt:hover { background: #333; transform: scale(1.15); }
.emoji-opt:hover { background: var(--surface3); transform: scale(1.15); }
.emoji-thumb { font-size: 1.6rem; }