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

sathya-sai-100-theme

v1.0.1

Published

A comprehensive theme package for Sathya Sai 100 applications with color palettes, gradients, and component styles

Readme

Sathya Sai 100 Theme

A comprehensive theme package for Sathya Sai 100 applications with color palettes, gradients, and component styles.

Features

  • 🎨 Complete color palette with 10 shades per color
  • 🌈 Pre-built gradients for various UI elements
  • 🧩 Component-specific color schemes
  • 📏 Consistent spacing and typography scales
  • 🎯 TypeScript support with full type definitions
  • 🛠️ Utility functions for theme manipulation
  • 📦 Easy to install and use

Installation

npm install @sathya-sai-100/theme

Or if you're using yarn:

yarn add @sathya-sai-100/theme

Usage

Basic Usage

import { theme, getColor, getSpacing } from '@sathya-sai-100/theme';

// Use colors directly
const primaryColor = theme.primary[500]; // '#f97316'

// Use utility functions
const accentColor = getColor('accent', '600'); // '#d97706'
const spacing = getSpacing('4'); // '16px'

CSS Variables

Generate CSS custom properties for use in your stylesheets:

import { generateCSSVariables } from '@sathya-sai-100/theme';

const cssVariables = generateCSSVariables();
// Inject this into your CSS

Component Styles

Generate CSS for common components:

import { generateComponentCSS } from '@sathya-sai-100/theme';

const componentCSS = generateComponentCSS();
// Use this CSS in your application

React/Next.js Integration

import { theme, colorCombinations } from '@sathya-sai-100/theme';

const MyComponent = () => {
  return (
    <div style={{ 
      background: colorCombinations.primaryGradient,
      color: theme.neutral[900]
    }}>
      Hello World
    </div>
  );
};

Color Palette

Primary Colors (Orange)

  • 50: #fff7ed - Very light orange
  • 100: #ffedd5 - Light orange
  • 200: #fed7aa - Soft orange
  • 300: #fdba74 - Medium orange
  • 400: #fb923c - Orange
  • 500: #f97316 - Primary orange
  • 600: #ea580c - Dark orange
  • 700: #c2410c - Deep orange
  • 800: #9a3412 - Very dark orange
  • 900: #7c2d12 - Darkest orange

Secondary Colors (Pink)

  • 50: #fdf2f8 - Very light pink
  • 100: #fce7f3 - Light pink
  • 200: #fbcfe8 - Soft pink
  • 300: #f9a8d4 - Medium pink
  • 400: #f472b6 - Pink
  • 500: #ec4899 - Primary pink
  • 600: #db2777 - Dark pink
  • 700: #be185d - Deep pink
  • 800: #9d174d - Very dark pink
  • 900: #831843 - Darkest pink

Accent Colors (Yellow)

  • 50: #fefce8 - Very light yellow
  • 100: #fef3c7 - Light yellow
  • 200: #fde68a - Soft yellow
  • 300: #fcd34d - Medium yellow
  • 400: #fbbf24 - Yellow
  • 500: #f59e0b - Primary yellow
  • 600: #d97706 - Dark yellow
  • 700: #b45309 - Deep yellow
  • 800: #92400e - Very dark yellow
  • 900: #78350f - Darkest yellow

Gradients

import { colorCombinations } from '@sathya-sai-100/theme';

// Available gradients
colorCombinations.primaryGradient    // Orange to pink
colorCombinations.secondaryGradient  // Yellow to orange
colorCombinations.accentGradient     // Blue to purple
colorCombinations.successGradient    // Green gradient
colorCombinations.backgroundGradient // Multi-color background
colorCombinations.cardGradient       // Card background

Spacing Scale

import { spacing } from '@sathya-sai-100/theme';

// Available spacing values
spacing[0]   // '0px'
spacing[1]   // '4px'
spacing[2]   // '8px'
spacing[3]   // '12px'
spacing[4]   // '16px'
spacing[5]   // '20px'
spacing[6]   // '24px'
spacing[8]   // '32px'
spacing[10]  // '40px'
spacing[12]  // '48px'
spacing[16]  // '64px'
spacing[20]  // '80px'
spacing[24]  // '96px'
spacing[32]  // '128px'

Border Radius

import { borderRadius } from '@sathya-sai-100/theme';

// Available border radius values
borderRadius.none   // '0px'
borderRadius.sm     // '4px'
borderRadius.md     // '8px'
borderRadius.lg     // '12px'
borderRadius.xl     // '16px'
borderRadius['2xl'] // '24px'
borderRadius.full   // '9999px'

Shadows

import { shadows } from '@sathya-sai-100/theme';

// Available shadow values
shadows.sm  // Small shadow
shadows.md  // Medium shadow
shadows.lg  // Large shadow
shadows.xl  // Extra large shadow

API Reference

Theme Object

  • theme.primary - Primary color scale
  • theme.secondary - Secondary color scale
  • theme.accent - Accent color scale
  • theme.blue - Blue color scale
  • theme.purple - Purple color scale
  • theme.green - Green color scale
  • theme.neutral - Neutral color scale
  • theme.success - Success colors
  • theme.warning - Warning colors
  • theme.error - Error colors
  • theme.info - Info colors

Utility Functions

  • getColor(colorKey, shade) - Get a specific color
  • getSpacing(spacingKey) - Get a spacing value
  • getBorderRadius(radiusKey) - Get a border radius value
  • getShadow(shadowKey) - Get a shadow value
  • generateCSSVariables() - Generate CSS custom properties
  • generateComponentCSS() - Generate component styles
  • themeToCSSInJS() - Convert theme to CSS-in-JS format
  • createThemeVariant(baseTheme, overrides) - Create theme variants
  • isValidColor(color) - Validate color values
  • generateColorPalette(baseColor) - Generate color palette from base color

Development

Building the Package

npm run build

Development Mode

npm run dev

Publishing

npm publish

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT License - see LICENSE file for details.

Support

For support and questions, please open an issue on GitHub.