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

fahsy

v1.3.11

Published

Design System for Farhan Rafly Fahrezi S apps ecosystem

Readme

fahsy

 

NPM Publish Build Testing

Design System for fahrezis apps ecosystem.

How to Use

Install fahsy using NPM or Yarn. Run the following command

npm i fahsy # for NPM

yarn add fahsy # for Yarn

Here you go. For complete guide using this libraries please read our full documentation at this Storybook.

Requirements

This package needs some dependencies. Make sure you have installed below dependencies before using this package.

{
    "@fontsource/poppins": "^4.5.3",

    "react": "^17.0.2",
    "react-dom": "^17.0.2"
}

Components

We have some components to use like Input, Select and Button. Some example below:

import { Container, Button } from 'fahsy'

const index = () => {
    return (
        <Container size='md'>
            <Button></Button>
        </Container>
    )
}

export default index

Themes

We provide themes for consistancy of design. Here is our themes content.

Colors

We have colors that used in our ecosystem. We divide it into 3 groups which is primary, secondary and tertiary.

const colors: colorsType = {
    primary: {
        black: '#1A1A1A',
        yellow: '#FFE247',
        subtleBlack: '#282828',
    },
    secondary: {
        // Red
        red: '#F84141',
        lightRed: '#FC9C9F',
        subtleRed: '#FFC2C2',

        // Green
        green: '#46D851',
        darkGreen: '#007531',

        // Blue
        blue: '#FC9C9F',
        darkBlue: '#2951A6',

        // Others
        white: '#FFFFFF',
        orange: '#FF891C',
        purple: '#7B61FF',
        darkYellow: '#AB9000',
    },
    tertiary: {
        // Grey
        grey: '#B8B8B8',
        darkGrey: '#767575',
        subtleGrey: '#F7F7F7',

        // Black
        lightBlack: '#373737',
        darkerBlack: '#161616',

        lineStroke: '#424242',
    },
    system: {
        black: {
            1: '#161616',
            2: '#1A1A1A',
            3: '#282828',
            4: '#373737',
            5: '#494949',
            6: '#7E7E7E',
        },
        yellow: {
            1: '#3F3A23',
            2: '#78681C',
            3: '#AB9000',
            4: '#C6AD28',
            5: '#E7C71F',
            6: '#FFE247',
        },
        green: {
            1: '#007531',
            2: '#2C9D29',
            3: '#2EB438',
            4: '#46D851',
            5: '#70F07A',
            6: '#B4FFB9',
        },
        red: {
            1: '#9D2929',
            2: '#C33232',
            3: '#CB3535',
            4: '#F84141',
            5: '#FC9C9F',
            6: '#FFC2C2',
        },
        blue: {
            1: '#1E3973',
            2: '#2951A6',
            3: '#3E7BFA',
            4: '#709CF6',
            5: '#B6C9EF',
            6: '#DCE4F4',
        },
        orange: {
            1: '#3F2B23',
            2: '#78481C',
            3: '#A15F22',
            4: '#D3761F',
            5: '#FF891C',
            6: '#FBAB62',
        },
        purple: {
            1: '#240D54',
            2: '#32009E',
            3: '#4700E0',
            4: '#5A41D7',
            5: '#7B61FF',
            6: '#9C93C7',
        },
    },
}

To use the colors all you have to do is import the colors.

import { colors } from 'fahsy'

Fonts

In our design system we used Poppins as our font family. So, we need this library to load the font family.

npm i @fontsource/poppins # for NPM

yarn add @fontsource/poppins # for Yarn

To use the font just import it from this library.

import { font } from 'fahsy'

And you will get an object like this.

const font: fontType = {
    family: '"Open Sans"',
    size: {
        12: '12px',
        14: '14px',
        16: '16px',
        18: '18px',
        20: '20px',
        24: '24px',
        32: '32px',
        48: '48px',
    },
    lineHeight: {
        12: '19.416px',
        14: '22.652px',
        16: '25.888px',
        18: '29.124px',
        20: '32.360px',
        24: '38.832px',
        32: '51.776px',
        48: '77.664px',
    },
}

export default font

License

I don't know much about repository license. Besides this is public repository feel free to explore and learning about React Component Library. Might be you found something helpful and useful for you.