Neumorphism Toast Notifications 구성 요소
Neumorphism Toast Notifications 반응형 효과와 어두운 테마를 지원하는 구성 요소.
HTML 코드
<div class="flex items-center justify-center min-h-screen p-10">
<div class="w-full max-w-sm mx-auto">
<div class="flex items-center p-6 neumorphism-card rounded-xl">
<div class="flex-shrink-0">
<svg class="w-6 h-6 text-green-500" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<div class="ml-4">
<p class="font-semibold text-gray-700 dark:text-gray-200">Success!</p>
<p class="mt-1 text-sm text-gray-500 dark:text-gray-400">Your action was completed successfully.</p>
</div>
</div>
<!-- Add more toast notifications as needed -->
</div>
</div>
<style>
/* Base styles for neumorphism effect */
.neumorphism-card {
background: linear-gradient(145deg, #e0e0e0, #ffffff);
box-shadow: 8px 8px 16px #bebebe, -8px -8px 16px #ffffff;
}
/* Dark mode styles */
@media (prefers-color-scheme: dark) {
.neumorphism-card {
background: linear-gradient(145deg, #2c2c2c, #383838);
box-shadow: 8px 8px 16px #232323, -8px -8px 16px #383838;
}
}
/* Responsive adjustments */
@media (max-width: 600px) {
.neumorphism-card {
padding: 1rem;
}
}
</style>
관련 구성 요소
Glassmorphism Toast Notifications 구성 요소
glassmorphism 디자인, 파스텔 색조 구성표 및 다크 모드 지원을 갖춘 반응형 토스트 알림 구성 요소로, 예약 및 예약 시스템에 적합합니다.
레트로 토스트 알림
레트로/빈티지 디자인, 트라이어딕 색 구성표 및 다크 모드를 지원하는 반응형 Toast Notifications 구성 요소로, Portfolio 사용을 위해 Tailwind CSS로 구축되었습니다.
Toast Notifications 구성 요소
대시보드를 위한 복잡한 glassmorphism 스타일의 토스트 알림 구성 요소로, 반투명 요소, 흐림 효과 및 유사한 색 구성표를 특징으로 합니다. 다크 모드 지원으로 완벽하게 반응합니다.