first commit

This commit is contained in:
root
2025-05-05 08:52:16 +02:00
commit e3205d500d
41 changed files with 7772 additions and 0 deletions

25
src/assets/main.css Normal file
View File

@@ -0,0 +1,25 @@
@import 'tailwindcss';
@custom-variant dark (&:where(.dark, .dark *));
/* Dark mode transition */
html,
body {
transition:
background-color 0.3s ease,
color 0.3s ease;
}
html.theme-transition * {
transition: none !important;
}
/* Additional dark mode styles */
body.dark-mode {
background-color: #111827;
color: #e5e7eb;
}
/* Force dark mode styles */
html.dark {
color-scheme: dark;
}