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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@xplortech/apollo-foundation

v0.1.0-alpha.0

Published

This repo and NPM package contain the design tokens for Xplor's [Apollo UI framework](https://github.com/xplor/apollo). Design tokens are low-level variables such as color values, fonts/typefaces, and text styles that help to ensure visual consistency acr

Downloads

16

Readme

Apollo Foundation

This repo and NPM package contain the design tokens for Xplor's Apollo UI framework. Design tokens are low-level variables such as color values, fonts/typefaces, and text styles that help to ensure visual consistency across interfaces and products.

While Xplor recommends the use of Apollo components whenever possible, you may also find it useful to use Apollo Foundation's design tokens directly in your UI to allow for more custom development than Apollo components afford. Read on to learn how to do this!

Usage

First, download the latest version of this package with NPM:

npm install @xplortech/apollo-foundation

Depending on how you prefer to import design variables, there are two recommended methods for a web project — 1) CSS variables or 2) JavaScript variables (it is possible to use both!)

1. CSS Variables

You can either @import the variables in a CSS file in your project, or reference it as a <link> in the <head> of your document.

@import "@xplortech/apollo-foundation/build/css/variables.css";
<link rel="stylesheet" href="@xplortech/apollo-foundation/build/css/variables.css">

Including the CSS variables by one of these two methods will add all the design tokens to the global scope of your CSS. Each variable is namespaced with --xpl (to attempt to prevent conflicts with other global CSS variables). The variables take the form --xpl-{category}-{class}-{modifier}-{value}-{mode}. Categories are things like color and size, classes are things like red and spacing. There may be 0, 1, 2, or more modifiers (such as success or warning). Values are usually numeric (e.g. 0, lightest, through 900, darkest, for color values), but can also be strings (bold for font weight). Finally, if there is a mode, it is always either lm for light mode, or dm for dark mode.

2. JS Variables

Import the type of variables you wish to reference:

import { color } from "@xplortech/apollo-foundation/build/js/colors.js";
import { font } from "@xplortech/apollo-foundation/build/js/font.js"; 

color and font are both deeply nested JavaScript objects (roughly following the pattern described above for CSS variables). For example, to reference the red-700 color value, you would write:

const red_700 = color.red["700"].value;

More Info

The design tokens included in this package should match the Figma documentation provided here.