Files
fluxkit/src/assets/main.css
Flux_bot de7ca59417 feat: Vue 3 Basis mit TailwindCSS, PrimeVUE, i18n und Dark/Light Mode
- Vue 3 + Vite Setup
- TailwindCSS für Styling
- PrimeVUE Komponenten
- vue-i18n (DE/EN)
- Dark/Light Mode Toggle
- Responsive Landingpage
- Docker-ready
2026-02-10 22:11:57 +00:00

20 lines
301 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--color-bg: #ffffff;
--color-text: #1a1a1a;
}
.dark {
--color-bg: #1a1a1a;
--color-text: #ffffff;
}
body {
background-color: var(--color-bg);
color: var(--color-text);
transition: background-color 0.3s, color 0.3s;
}