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

@devraj-labs/vajra-ui

v0.5.3

Published

A minimal zero dependency React Native styling and theming library

Readme

npm version license platform

⚠️ Work in Progress — First release coming June 2026 This library is under active development. APIs are still evolving hold off on using it in production until the v1 release.


Why Vajra UI

  • Token-first — every prop (bg, p, rounded, color) maps to a design token, never a raw value
  • Themeable — override colors, spacing, and border radii via createVajraTheme; switch themes at runtime
  • Typed end to end — tokens are typed unions, no magic strings slip through
  • Headless core — unstyled primitives in @devraj-labs/vajra-ui-core if you want full control
  • Zero opinions on navigation — works with any navigation library

Packages

| Package | Description | |---------|-------------| | @devraj-labs/vajra-ui | Token-aware components + Vajra theme system | | @devraj-labs/vajra-ui-core | Headless, unstyled primitives — no theme, no tokens |


Installation

npm install @devraj-labs/vajra-ui
# or
yarn add @devraj-labs/vajra-ui

Peer dependencies

npm install react react-native react-native-safe-area-context

Quick Start

1. Wrap your app

import { VajraProvider } from '@devraj-labs/vajra-ui';

export default function App() {
  return (
    <VajraProvider colorScheme="light">
      <YourApp />
    </VajraProvider>
  );
}

2. Build with token props

import { Box, Text, Button, Badge } from '@devraj-labs/vajra-ui';

export function MyScreen() {
  return (
    <Box p="s-4" gap="s-3">
      <Text variant="subheading">Hello</Text>
      <Badge label="New" bg="primary" />
      <Button label="Get started" onPress={() => {}} />
    </Box>
  );
}

3. Access tokens in your own components

import { useVajraTheme } from '@devraj-labs/vajra-ui';
import { View } from 'react-native';

export function MyCard() {
  const { colors, spacing, rounded } = useVajraTheme();

  return (
    <View
      style={{
        backgroundColor: colors.surface,
        padding: spacing['s-4'],
        borderRadius: rounded['r-3'],
      }}
    />
  );
}

Theming

Custom fonts

// theme.ts
import { createVajraTheme } from '@devraj-labs/vajra-ui';
import { myFonts } from './fonts';

export const theme = createVajraTheme({ fonts: myFonts });
<VajraProvider theme={theme}>
  <YourApp />
</VajraProvider>

Get font autocomplete on <Text font="..." /> by augmenting the module:

export type TAppFonts = keyof typeof myFonts;

declare module '@devraj-labs/vajra-ui' {
  interface IVajraFonts extends Record<TAppFonts, true> {}
}

Override brand colors

Pass a partial colors map — only the keys you provide are overridden, the rest stay as defaults.

export const theme = createVajraTheme({
  fonts: myFonts,
  colorScheme: 'light',
  colors: {
    primary: '#8B5CF6',
    primaryMuted: '#9D68F0',
    primarySubtle: '#F5F3FF',
    borderFocus: '#9D68F0',
  },
});

Override spacing and border radii

export const theme = createVajraTheme({
  fonts: myFonts,
  spacing: { 's-4': 20 },   // bump base padding
  rounded: { 'r-2': 10 },   // slightly rounder cards
});

Runtime theme switching

Hold preset and colorScheme in state, rebuild the theme on change, pass it to VajraProvider:

function AppWithTheme() {
  const [colorScheme, setColorScheme] = useState<'light' | 'dark'>('light');

  const theme = createVajraTheme({ fonts: myFonts, colorScheme });

  return (
    <VajraProvider theme={theme}>
      <YourApp />
    </VajraProvider>
  );
}

Adding your own tokens

Custom colors — augment IVajraCustomColors. Your tokens are typed through useVajraTheme() alongside ours.

// theme.ts
declare module '@devraj-labs/vajra-ui' {
  interface IVajraCustomColors {
    surfaceAccent: string;
    brandGold: string;
  }
}

export const theme = createVajraTheme({
  fonts: myFonts,
  colors: {
    surfaceAccent: '#F0E6FF',
    brandGold: '#D4A017',
  },
});
// YourComponent.tsx
const { colors } = useVajraTheme();
colors.surfaceAccent // ✅ typed, autocompletes
colors.brandGold     // ✅ typed, autocompletes

Custom rounded tokens — augment IVajraRoundedTokens. Accepted by rounded, roundedT/B/L/R on Box and other components.

declare module '@devraj-labs/vajra-ui' {
  interface IVajraRoundedTokens { 'r-12': number; }
}

Custom spacing tokens — augment IVajraSpacingTokens. Accepted by all spacing props (p, m, px, gap, etc.).

declare module '@devraj-labs/vajra-ui' {
  interface IVajraSpacingTokens { 's-20': number; }
}

Custom typography variants — augment IVajraFontVariants. Accepted by variant on Text and available via useVajraTheme().typography.

import { TFontVariantProps } from '@devraj-labs/vajra-ui';

declare module '@devraj-labs/vajra-ui' {
  interface IVajraFontVariants {
    displayLarge: TFontVariantProps;
  }
}

// Provide values in createVajraTheme
export const theme = createVajraTheme({
  fonts: myFonts,
  typography: {
    displayLarge: { fontSize: 48, lineHeight: 56, fontWeight: '700' },
  },
});

Our components only use our tokens — nothing breaks. Your tokens are only visible through props and hooks in your own components.

For the full augmentation guide — see docs/theming.md.

For the full theming guide including runtime switching, spacing/radius overrides, and custom fonts — see docs/theming.md.


Design Tokens

Colors

| Token | Description | |-------|-------------| | primary / primaryMuted / primarySubtle | Brand primary scale | | secondary / secondaryMuted / secondarySubtle | Brand secondary scale | | text / textMuted / textInverse / textDisabled | Text scale | | background | Screen background | | surfaceSunken / surface / surfaceRaised / surfaceOverlay | Surface scale | | border / borderStrong / borderFocus | Border scale | | error / errorMuted / errorSubtle | Error feedback | | success / successMuted / successSubtle | Success feedback | | warning / warningMuted / warningSubtle | Warning feedback | | info / infoMuted / infoSubtle | Info feedback |

Spacing

| Token | Value (px) | |-------|-----------| | s-0 | 0 | | s-1 | 4 | | s-2 | 8 | | s-3 | 12 | | s-4 | 16 | | s-5 | 20 | | s-6 | 24 | | s-8 | 32 | | s-10 | 40 | | s-12 | 48 | | s-16 | 64 |

Border Radius

| Token | Value (px) | |-------|-----------| | r-0 | 0 | | r-1 | 4 | | r-2 | 8 | | r-3 | 12 | | r-4 | 16 | | r-5 | 20 | | r-6 | 24 | | r-7 | 28 | | r-8 | 32 | | r-9 | 36 | | r-10 | 40 | | r-full | 9999 |

Typography

| Variant | Use | |---------|-----| | display | Hero text | | h1 / h2 / h3 | Page and section headings | | subheading | Section labels | | body / bodyMedium / bodySmall | Body copy | | button | Button labels | | label / labelMedium | UI labels | | caption | Helper text, timestamps |


Architecture

@devraj-labs/vajra-ui
├── core/           Token-aware wrappers (Box, Text, Pressable...)
├── components/     Opinionated components (Button, Badge, TabBar...)
├── vajra-theme/    Default tokens, VajraProvider, useVajraTheme
└── theme/          Generic ThemeProvider + useTheme (no vajra tokens)

@devraj-labs/vajra-ui-core
└── Headless primitives — no theme dependency

Layer rule: core imports from vajra-ui-core. components imports from core. Nothing imports across layers.


Contributing

See CODING_GUIDELINES.md for naming conventions, folder structure, and component patterns.


License

MIT © Devraj Labs