adjective

Url

25 of 42
Other / Light

dim - A state or quality of being faintly lit or poorly illuminated.

The campsite was quiet and dim, lit only by the moonlight

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }