mirror of
https://github.com/lukaszraczylo/claude-mnemonic.git
synced 2026-06-09 23:59:40 +00:00
24 lines
366 B
CSS
24 lines
366 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
scroll-behavior: smooth;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
@apply font-sans text-neutral-300 bg-[#09090b];
|
|
}
|
|
|
|
code, pre {
|
|
@apply font-mono;
|
|
}
|
|
|
|
::selection {
|
|
@apply bg-amber-500/30 text-white;
|
|
}
|
|
}
|