feat: add support for custom themes

This commit is contained in:
Gabe Farrell 2025-06-18 00:55:55 -04:00
parent 5ef2f07282
commit a1b6724179
4 changed files with 77 additions and 12 deletions

View file

@ -139,6 +139,13 @@ input[type="text"]:focus {
outline: none;
border: 1px solid var(--color-fg-tertiary);
}
textarea {
border: 1px solid var(--color-bg);
}
textarea:focus {
outline: none;
border: 1px solid var(--color-fg-tertiary);
}
input[type="password"] {
border: 1px solid var(--color-bg);
}