Initial commit: Inner OS v1
Full-stack inner development operating system built on Next.js 16 + Prisma 7 + PostgreSQL + OpenAI + Clerk. Generates personalized daily mental training tasks, collects reflection, updates user state, and provides internal reward feedback. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
@import "tailwindcss";
|
||||
|
||||
@theme inline {
|
||||
--color-cream: #FAF7F2;
|
||||
--color-sand: #F3EFE8;
|
||||
--color-stone: #E6E0D4;
|
||||
--color-amber: #C8834A;
|
||||
--color-sage: #7A9A8B;
|
||||
--color-ink: #2C2416;
|
||||
--color-muted: #6B5E4A;
|
||||
--color-faded: #9B8E7A;
|
||||
--color-success: #7A9A8B;
|
||||
--color-warning: #C8834A;
|
||||
--color-error: #C45A4A;
|
||||
--color-info: #5A8AB5;
|
||||
--font-display: var(--font-fraunces), Georgia, serif;
|
||||
--font-body: var(--font-dm-sans), system-ui, sans-serif;
|
||||
}
|
||||
|
||||
:root {
|
||||
--background: #FAF7F2;
|
||||
--foreground: #2C2416;
|
||||
--surface: #F3EFE8;
|
||||
--border: #E6E0D4;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background: #1E1A14;
|
||||
--foreground: #F3EFE8;
|
||||
--surface: #292418;
|
||||
--border: #3D3528;
|
||||
--color-muted: #B8A892;
|
||||
--color-faded: #8A7D6B;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-body);
|
||||
font-size: 16px;
|
||||
line-height: 1.6;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
Reference in New Issue
Block a user