🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@yummacss/core

Package Overview
Dependencies
Maintainers
1
Versions
55
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yummacss/core

Core utility definitions for Yumma CSS

Source
npmnpm
Version
3.25.0
Version published
Weekly downloads
864
-39.92%
Maintainers
1
Weekly downloads
 
Created
Source

@yummacss/core

Core utility definitions for Yumma CSS.

Use cases

  • Building editor extensions or IDE plugins
  • Creating custom build tools or integrations
  • Analyzing or documenting Yumma CSS utilities
  • Generating utility references programmatically

For styling projects, use yummacss instead.

Usage

import { coreUtils, colorUtils, boxModelUtils } from '@yummacss/core';

// Get all utilities
const allUtils = coreUtils();

// Get specific utility groups
const colors = colorUtils();
const spacing = boxModelUtils();

// Access utility definitions
console.log(allUtils['background-color']);
// {
//   prefix: 'bg',
//   properties: ['background-color'],
//   values: { ... },
//   variants: { ... }
// }

Utility Reference

Each utility export returns a Utilities object containing utility definitions with:

  • prefix - Class name prefix (e.g., bg for bg-red)
  • properties - CSS properties this utility controls
  • values - Available values and their CSS outputs
  • variants - Supported variants (hover, media queries, etc.)

Learn more at yummacss.com/docs/core-module

Keywords

css-framework

FAQs

Package last updated on 27 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts