mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-28 11:57:44 +02:00
19 lines
374 B
CSS
19 lines
374 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
/* Dark mode base styles */
|
|
@layer base {
|
|
:root {
|
|
/* CSS Variables for colors */
|
|
--color-dark-bg: #181818;
|
|
--color-dark-surface: #242424;
|
|
--color-dark-elevated: #2a2a2a;
|
|
--color-dark-border: #383838;
|
|
--color-dark-input: #1f1f1f;
|
|
}
|
|
|
|
body {
|
|
@apply bg-dark-bg text-gray-100;
|
|
}
|
|
}
|