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

@textcss/core

v0.1.5

Published

TextCSS core - the core of TextCSS

Readme

TextCSS Core

TextCSS Core is a powerful SCSS library that provides a collection of text effects and animations for modern web applications. This package contains the core functionality and modules for text styling.

Features

Text Effects

  • Text Shadow: Add depth and dimension to your text with customizable shadow effects
  • Fancy Underline: Create stylish and animated underlines for your text
  • Text Animation: Various text animations including typing, fade, and bounce effects
  • Transform: Apply various text transformations like rotation, scale, and skew
  • Neon: Create glowing neon text effects with customizable colors and intensity
  • Outline: Add customizable text outlines with various styles
  • Gradient Text: Apply beautiful gradient effects to your text
  • Text Blur: Create blurred text effects with different intensity levels
  • Glitch Text: Add retro-style glitch effects to your text

Installation

npm install @textcss/core

Usage

Import the core styles in your SCSS file:

@use '@textcss/core';

Available Variables

The package provides a set of customizable variables that you can override:

// Colors
$primary-color: #333;
$secondary-color: #666;
$accent-color: #007bff;

// Text Effects
$text-shadow-color: rgba(0, 0, 0, 0.3);
$text-shadow-blur: 2px;
$text-shadow-offset: 1px;

// Animation
$transition-duration: 0.3s;
$transition-timing: ease;

// Blur
$blur-sm: 1px;
$blur-md: 2px;
$blur-lg: 4px;

// Glitch
$glitch-offset: 2px;
$glitch-intensity: 0.1;
$glitch-duration: 0.3s;

// Gradient
$gradient-colors: (#ff6b6b, #4ecdc4, #45b7d1);
$gradient-direction: to right;
$gradient-duration: 3s;

CSS Variables

The package also provides CSS variables that you can use in your styles:

:root {
  --textcss-primary-color: #333;
  --textcss-secondary-color: #666;
  --textcss-accent-color: #007bff;
  /* ... and more */
}

Modules

Each text effect is available as a separate module that you can import individually:

@use '@textcss/core/modules/text-shadow';
@use '@textcss/core/modules/fancy-underline';
@use '@textcss/core/modules/text-animation';
@use '@textcss/core/modules/transform';
@use '@textcss/core/modules/neon';
@use '@textcss/core/modules/outline';
@use '@textcss/core/modules/gradient-text';
@use '@textcss/core/modules/text-blur';
@use '@textcss/core/modules/glitch-text';

Browser Support

The package uses modern CSS features and is compatible with:

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

License

MIT