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

full-steck-tools

v1.1.3-c-color-update

Published

Trying to Make Webdev an Easier & Better Place One Line at a Time

Readme

npm-Full-Steck-Tools

Trying to Make Webdev an Easier & Better Place One Line at a Time

Plugin Contains

  • SCSS for helpful out of the box styling & mixins to create your own custom classes
  • Large Focus on SCSS Color Palette and Dynamically Made Classes

GIT REPO: https://github.com/steckReed/npm-Full-Steck-Tools

// // Package imports
// @import '@npm/full-steck-tools/themes/animal-crossing/_-color-palette.scss';
// @import '@npm/full-steck-tools/sassy/-fs-mixins.scss';
// @import '@npm/full-steck-tools/themes/animal-crossing/_-styles.scss';


// Testing imports
@import './full-steck-tools/themes/animal-crossing/_-color-palette.scss';
@import './full-steck-tools/sassy/-fs-mixins.scss';
@import './full-steck-tools/themes/animal-crossing/_-styles.scss';

Required & Recommended Packages

@Required:
    npm i lodash @types/webpack-env react-icons

    lodash              : https://lodash.com/
    @types/webpack-env  : https://webpack.js.org/guides/dependency-management/#requirecontext
    react-icons         : https://react-icons.github.io/react-icons/

TO USE:

  1. Create A Global Stylesheet (SCSS)

    • E.g. '_global-styles.scss'
  2. Include Global Styles within _app.js or Header File (Global Scope)

  3. Create a '_color-palette.scss' File With the Contents Below

    • NOTE: Light & Dark Colors are Required to be Filled, but don't need to be used

    ''' // Default Theme // {Add Color(s) Here}

    // Light Theme $light-primary: hsl(0, 0%, 100%); $light-secondary: hsl(39, 90%, 55%); $light-tertiary: hsl(162, 90%, 46%); $light-text-primary: hsl(0, 0%, 11%); $light-text-secondary: hsl(194, 72%, 52%);

    // Dark Theme $dark-primary: hsl(215, 26%, 24%); $dark-secondary: hsl(206, 59%, 44%); $dark-tertiary: hsl(12, 85%, 60%); $dark-text-primary: hsl(0, 0%, 100%); $dark-text-secondary: hsl(10, 72%, 50%);

    // Add Any & All HSL Colors here to auto generate classes based on those colors $auto-class-generator:( // Normal 'primary':( 'light' : $light-secondary, 'dark' : $dark-secondary ), 'secondary':( 'light' : $light-tertiary, 'dark' : $dark-tertiary ), // Normal ); '''

  4. Add the Following to your Global Stylesheet ''' @import './color-palette'; @import '../../../node_modules/full-steck-tools/Sassy/-fs-mixins'; '''

  5. This Package Works Best With Icons, Who Doesnt Like Those?

    • Recommend to install 'react-icons' from (https://react-icons.github.io/react-icons/)

    ''' npm i react-icons --save '''

Important Notes

  • Ensure all scss color variables are in HSL format to ensure Full-Steck Tools functions properly

Automated Class Generation

Created to auto-gen classes from specified color palettes Note: Text Color is soon to be auto generated by Chromes accessibility scoring (Default: AA)

EXAMPLE: (Add below code to own color-palette.scss file)

$auto-class-generator:( // Light/Dark Themed Classes (Changes based on light/dark themes) 'primary':( 'light' : $light-secondary, 'dark' : $dark-secondary ), 'secondary':( 'light' : $light-tertiary, 'dark' : $dark-tertiary ),

// Single Color Classes (Doesn't change on light/dark themes)
'success'  : $colorSuccess,

);

--- SCSS CLASSES ---

--- ---

--- Active ---

.active
.active-{colorName}

--- Accessibility ---

.outline
.outline-{colorName}

--- Backgrounds ---

Note: short-hand for below class is 'bg'

.bg-{colorName}
.background-{colorName}

--- Borders ---

.border-dotted-{colorName}
.border-dashed-{colorName}
.border-solid-{colorName}
.border-double-{colorName}
.border-groove-{colorName}
.border-ridge-{colorName}
.border-inset-{colorName}
.border-outset-{colorName}
.border-none-{colorName}
.border-hidden-{colorName}

--- Buttons ---

.btn-{colorName}

--- Display ---

.show
.hide

--- Font Colors ---

Note: short-hand for below class is 'color'

.color-{colorName}
.font-color-{colorName}

--- Grid Tags ---

grid
grid-container
flex
flex-container

--- Grids ---

.grid-pos

--- Positioning ---

- Fixed
  .position-fixed-top-left
  .position-fixed-top-middle
  .position-fixed-top-right
  .position-fixed-center-left
  .position-fixed-center-middle
  .position-fixed-center-right
  .position-fixed-bottom-left
  .position-fixed-bottom-middle
  .position-fixed-bottom-right

--- Text ---

Note: Needs updated

--- Textures ---

Note: In order for textures to work properly, or if you're getting a white background.
      Convert all HEX colors to HSL. Background-image doesn't support HEX :'(

.texture
.texture-transparent
.texture-{colorName}

--- JS FUNCTIONS ---

HOW TO USE "Full-Steck Scroll Animation"

sa_EleId           = (REQUIRED)
sa_TopEleId        = (REQUIRED)
sa_AnimationIn     = (REQUIRED)
sa_BottomEleId     =
sa_AnimationOut    =
sa_TimeDelay       =
sa_RepeatAnimation =