Design System for the Age of Superintelligence
"More Geometrico"

See SpinozaOS in action across different use cases
SpinozaOS is a philosophy-driven, motion-first design system built for AGI-era applications. Born from the Substance AGI Intelligence Engine, it provides design tokens, React components, and animation presets.
| Principle |
Description |
| Prophetic Gold |
Single accent (#fbbf24) for mystical, future-focused aesthetic |
| Void-first |
Deep black (#020617) foundation, dark-only |
| Motion-first |
60fps animations, spring physics, smooth interactions |
| Information-dense |
Bloomberg Terminal inspired data visualization |
| Mobile-first |
Touch targets, responsive from ground up |
SpinozaOS = Bloomberg Terminal × Sci-Fi UI × Spinoza Philosophy
= Data-driven + Mysterious + Philosophical
# Install tokens
npm install @spinozaos/tokens
# Install React components
npm install @spinozaos/react
# Install Tailwind preset
npm install @spinozaos/tailwind
import { colors, typography, spacing } from '@spinozaos/tokens';
// Colors
colors.spinoza.yellow // #fbbf24
colors.void // #020617
// Typography
typography.fontFamily.serif // 'Cinzel', 'Playfair Display', Georgia, serif
// Spacing
spacing[4] // 1rem (16px)
import { Button, Card, Text } from '@spinozaos/react';
function App() {
return (
<Card>
<Text variant="heading">Welcome to SpinozaOS</Text>
<Button variant="primary">Get Started</Button>
</Card>
);
}
// tailwind.config.js
module.exports = {
presets: [require('@spinozaos/tailwind')],
// your config...
};
| Token |
Hex |
Preview |
void |
#020617 |
 |
void-light |
#0f172a |
 |
spinoza-yellow |
#fbbf24 |
 |
spinoza-gold |
#d97706 |
 |
| Token |
Hex |
Usage |
success |
#22c55e |
Positive feedback |
error |
#ef4444 |
Error states |
warning |
#f59e0b |
Warnings |
oracle-purple |
#8b5cf6 |
Premium tier |
/* Font Families */
--font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
--font-sans: 'Inter', system-ui, sans-serif;
--font-mono: 'JetBrains Mono', monospace;
| Style |
Font |
Size |
Use Case |
| Display |
Serif |
60px |
Hero headlines |
| Heading |
Serif |
36px |
Section titles |
| Body |
Sans |
16px |
Paragraphs |
| Label |
Mono |
10px |
Categories |
| Data |
Mono |
48px |
Numbers |
import { SPRING } from '@spinozaos/motion';
// Available presets
SPRING.tight // Buttons, toggles
SPRING.soft // Cards, panels
SPRING.bouncy // Badges, achievements
SPRING.slow // Page transitions
SPRING.mobile // Touch optimized
import { VARIANTS } from '@spinozaos/motion';
// Framer Motion variants
VARIANTS.fadeInUp
VARIANTS.fadeInScale
VARIANTS.slideInRight
VARIANTS.staggerContainer
# Clone the repository
git clone https://github.com/mrsarac/spinozaos.git
cd spinozaos
# Install dependencies
pnpm install
# Start development
pnpm dev
# Run Storybook
pnpm storybook
# Build all packages
pnpm build
# Run tests
pnpm test
spinozaos/
├── packages/
│ ├── tokens/ # @spinozaos/tokens
│ ├── react/ # @spinozaos/react
│ ├── motion/ # @spinozaos/motion
│ └── tailwind/ # @spinozaos/tailwind
├── apps/
│ ├── docs/ # Documentation site
│ └── showcase/ # Interactive demo
├── turbo.json
└── package.json
- Linear - Modern SaaS aesthetic
- Vercel - Developer experience
- Bloomberg Terminal - Information density
- Blade Runner / Minority Report - Sci-Fi UI
- Baruch Spinoza - Philosophical foundations
MIT © Mustafa Sarac
"More Geometrico" - Design tokens for the age of superintelligence