Примеры использования
This content is not available in your language yet.
Примеры использования цветов
Заголовок раздела «Примеры использования цветов»Примеры использования цветовой палитры в интерфейсных компонентах.
Примеры использования
Заголовок раздела «Примеры использования»<div class="flex gap-2 flex-wrap"> <button class="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600 cursor-pointer active:pulse" > <p>Blue</p> </button> <button class="px-4 py-2 bg-green-500 text-white rounded hover:bg-green-600 cursor-pointer active:pulse" > <p>Green</p> </button> <button class="px-4 py-2 bg-red-500 text-white rounded hover:bg-red-600 cursor-pointer active:pulse" > <p>Red</p> </button> <button class="px-4 py-2 bg-yellow-500 text-white rounded hover:bg-yellow-600 cursor-pointer active:pulse" > <p>Yellow</p> </button> <button class="px-4 py-2 bg-orange-500 text-white rounded hover:bg-orange-600 cursor-pointer active:pulse" > <p>Orange</p> </button> <button class="px-4 py-2 bg-sky-500 text-white rounded hover:bg-sky-600 cursor-pointer active:pulse" > <p>Sky</p> </button> <button class="px-4 py-2 bg-gray-200 text-gray-800 rounded hover:bg-gray-300 cursor-pointer active:pulse" > <p>Gray</p> </button></div>BlueGreenRedYellowOrangeSkyGray
<div class="flex gap-2 flex-wrap"> <span class="px-2 py-1 bg-blue-100 text-blue-700 rounded text-sm">Blue</span> <span class="px-2 py-1 bg-green-100 text-green-700 rounded text-sm"> Green </span> <span class="px-2 py-1 bg-red-100 text-red-700 rounded text-sm">Red</span> <span class="px-2 py-1 bg-yellow-100 text-yellow-700 rounded text-sm"> Yellow </span> <span class="px-2 py-1 bg-orange-100 text-orange-700 rounded text-sm"> Orange </span> <span class="px-2 py-1 bg-sky-100 text-sky-700 rounded text-sm">Sky</span> <span class="px-2 py-1 bg-gray-100 text-gray-700 rounded text-sm">Gray</span></div>Карточки состояний
Заголовок раздела «Карточки состояний»✓ Успешно выполнено
⚠ Требует внимания
✗ Ошибка выполнения
<div class="flex flex-col gap-4"> <div class="p-4 bg-green-50 border border-green-200 rounded"> <div class="text-green-800">✓ Успешно выполнено</div> </div> <div class="p-4 bg-yellow-50 border border-yellow-200 rounded"> <div class="text-yellow-800">⚠ Требует внимания</div> </div> <div class="p-4 bg-red-50 border border-red-200 rounded"> <div class="text-red-800">✗ Ошибка выполнения</div> </div></div>