
**Tactile, dark-first React component library built on [Radix](https://www.radix-ui.com/) primitives.**
Old-iOS skeuomorphism × macOS Sequoia neatness × Ubuntu warmth.
---
## Install
Add the registry to your project `.npmrc`:
```
@olly:registry=https://git.ollyhearn.ru/api/packages/olly/npm/
```
Then install:
```bash
npm install @olly/@olly/modern-sk
```
`react` and `react-dom` (>=18) are peer dependencies — your app provides them.
## Usage
Import the stylesheet once at your app root, then use components anywhere:
```tsx
import '@olly/modern-sk/styles.css'; // required — tokens + components
import '@olly/modern-sk/fonts.css'; // optional — branded faces (see Fonts)
import { ThemeProvider, TooltipProvider, Button, Card } from '@olly/modern-sk';
export function App() {
return (