npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@apra2520/ai-dlc-design-kit-package

v1.0.8

Published

A complete design kit with components, styles, and guidelines for building modern web applications

Downloads

88

Readme

@make-kits/design-system-atos

A complete design kit with components, styles, and guidelines for building modern web applications with the Atos brand identity.

Features

Complete Component Library - Button, Card, Badge, Input, Alert, and more
🎨 Design Tokens - Comprehensive color, spacing, and typography system
TypeScript Support - Full type definitions included
🎯 Tailwind Compatible - Works seamlessly with Tailwind CSS v4
Accessible - Built with accessibility best practices
🌳 Tree-Shakeable - Import only what you need

Installation

pnpm add @make-kits/design-system-atos

Quick Start

  1. Import the stylesheet in your main CSS file:
@import '@make-kits/design-system-atos/style.css';
  1. Import and use components:
import { Button, Card, Badge } from '@make-kits/design-system-atos';

function App() {
  return (
    <Card>
      <h2>Welcome</h2>
      <Button variant="primary">Get Started</Button>
      <Badge variant="success">Active</Badge>
    </Card>
  );
}

Documentation

Complete documentation is available in the guidelines/ directory:

Components

Button

<Button variant="primary" size="md">Click Me</Button>
<Button variant="outline">Cancel</Button>
<Button variant="destructive">Delete</Button>

Card

<Card variant="glass">
  <CardHeader>
    <CardTitle>Title</CardTitle>
    <CardDescription>Description</CardDescription>
  </CardHeader>
  <CardContent>Content</CardContent>
</Card>

Badge

<Badge variant="success">Active</Badge>
<Badge variant="warning">Pending</Badge>

Input

<Input type="text" placeholder="Enter text" />

Alert

<Alert variant="info">
  <AlertTitle>Note</AlertTitle>
  <AlertDescription>This is important</AlertDescription>
</Alert>

Design Tokens

Access design tokens via CSS custom properties:

.custom-element {
  color: var(--text-primary);
  background: var(--primary);
  padding: var(--spacer-md);
  border-radius: var(--radius-lg);
}

Color Palette

  • Brand: --atos-blue, --blue-vivid, --blue-light
  • Accents: --teal, --violet, --amber, --green, --rose
  • Text: --text-primary, --text-secondary, --text-tertiary, --text-muted
  • Backgrounds: --page-bg, --glass-header, --glass-card

See tokens.md for the complete reference.

Tailwind CSS Integration

If using Tailwind CSS v4, add these mappings to your tailwind.css:

@theme inline {
  --color-primary: var(--primary);
  --color-secondary: var(--secondary);
  /* ... see setup.md for complete list */
}

Then use Tailwind utilities:

<div className="bg-primary text-primary-foreground">
  Styled with Tailwind
</div>

TypeScript

Full TypeScript support with exported types:

import { ButtonProps, CardProps } from '@make-kits/design-system-atos';

const myButtonProps: ButtonProps = {
  variant: 'primary',
  size: 'lg',
  onClick: () => console.log('clicked')
};

Customization

Override design tokens in your CSS:

:root {
  --primary: #FF6B00;
  --spacer-md: 1.25rem;
}

Extend components with className:

<Button className="min-w-[200px] shadow-xl" variant="primary">
  Custom Button
</Button>

Best Practices

Do:

  • Use design system components instead of building from scratch
  • Use CSS custom properties for all styling
  • Extend with className prop
  • Import only needed components

Don't:

  • Hardcode color values
  • Modify design system source files
  • Use !important to override styles
  • Create duplicate components

Browser Support

  • Chrome/Edge (last 2 versions)
  • Firefox (last 2 versions)
  • Safari (last 2 versions)

Peer Dependencies

  • React ^18.0.0
  • React DOM ^18.0.0

License

MIT

Contributing

Issues and feature requests are welcome. Please follow the existing code style and include tests for new features.

Support

For questions or issues: