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 🙏

© 2025 – Pkg Stats / Ryan Hefner

sanctum-ui

v1.0.2

Published

CSS Framework inspired by Elden Ring aesthetics

Readme

🗡️ SanctumUI Framework

A dark fantasy CSS framework inspired by the mystical world of Elden Ring

✨ Features

  • 🌑 Dark Theme - Deep, immersive dark color palette
  • ✨ Golden Accents - Magical golden highlights and glowing effects
  • 🎭 Fantasy Typography - Cinzel font family for medieval aesthetics
  • 🎪 Magical Animations - Flame effects, rune pulses, and glowing transitions
  • 📱 Responsive Design - Mobile-first approach with flexible grid system
  • 🎨 Customizable - Easy to extend with SASS variables and mixins
  • ⚡ Lightweight - Minimal file size, maximum impact

🚀 Installation

Via npm

npm install sanctum-ui

Via CDN

<link rel="stylesheet" href="https://unpkg.com/sanctum-ui/dist/sanctum-ui.min.css">

Download

Download the latest release from GitHub Releases.


💫 Quick Start

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>My Elden Ring Site</title>
  <link rel="stylesheet" href="path/to/sanctum-ui.min.css">
</head>
<body>
  <div class="container">
    <h1 class="flame-text">Welcome, Tarnished</h1>
    <div class="card card-bordered">
      <h3>Quest Log</h3>
      <p>Begin your journey through the Lands Between...</p>
      <button class="btn">Start Adventure</button>
    </div>
  </div>
</body>
</html>

🎨 Components

Buttons

<button class="btn">Primary</button>
<button class="btn btn-secondary">Secondary</button>
<button class="btn btn-danger">Danger</button>
<button class="btn btn-large">Large Button</button>

Cards

<div class="card">
  <h4>Basic Card</h4>
  <p>Card content goes here</p>
</div>

<div class="card card-bordered">
  <h4>Golden Bordered Card</h4>
  <p>Enhanced with magical golden border</p>
</div>

Forms

<div class="form-group">
  <label for="input">Mystical Input</label>
  <input type="text" id="input" class="enchanted" placeholder="Enter magic...">
</div>

Animations

<h1 class="flame-text">Flickering Text</h1>
<div class="rune-pulse">Pulsing Element</div>

🛠️ Development

Prerequisites

  • Node.js (v14 or higher)
  • npm or yarn

Setup

# Clone the repository
git clone https://github.com/tosentai/sanctum-ui.git
cd sanctum-ui

# Install dependencies
npm install

# Start development
npm run dev

# Build for production
npm run build

File Structure

sanctum-ui/
├── scss/           # SASS source files
├── dist/           # Compiled CSS
├── docs/           # Documentation and demo
└── assets/         # Additional resources

🎭 Customization

SASS Variables

// Override default variables before importing
$er-gold: #your-gold-color;
$er-bg-primary: #your-background;

@import '~sanctum-ui/scss/styles';

CSS Custom Properties

:root {
  --er-gold: #custom-gold;
  --er-bg-primary: #custom-background;
}

📖 Documentation

Visit our documentation site for:

  • Complete component gallery
  • Customization guide
  • SASS mixins reference
  • Best practices

🤝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.


🙏 Acknowledgments

  • Inspired by Elden Ring’s incredible visual design
  • Google Fonts for the Cinzel font family
  • The Dark Souls community for endless inspiration

“May you find your worth in the waking world.”


⚡ Development Commands

# Install dependencies
npm install

# Development (watch mode)
npm run dev

# Build production CSS
npm run build

# Build minified version
npm run build-min

# Run all builds
npm run build && npm run build-min

# Publish to npm
npm publish