Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sebgroup/chlorophyll

Package Overview
Dependencies
Maintainers
4
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sebgroup/chlorophyll

A CSS framework for SEB with accessibility at it's core.

  • 1.0.0-beta.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9K
increased by7.6%
Maintainers
4
Weekly downloads
 
Created
Source

image @sebgroup/chlorophyll

Chlorophyll is the design token and css part of Green. It is used in all high level component libraries. If you are not useing a framework, you can use chlorophyll directly to style your html.

Install

Use

The Green design system has an unrelenting focus on sensible defaults and ease of use. All you have to do to start using it is import the css, mark the area in which you intend to start using Green (use the html tag if the whole application uses it), and add the class green.

<body class="green">
  <h1>Hello!</h1>
  <p>Everything you see here will be correctly styled :smile:</p>
</body>

All your basic styling will now be correct. Additional classes will only be needed when you want to deviate from the defaults. So this:

<div class="green">
  <h2>This is a pretty form</h2>
  <form>
    <label for="pretty-first-name">First name</label>
    <input name="firstName" id="pretty-first-name" />
    <hr />
    <button type="submit">Send</button>
  </form>
</div>

...will look like this:

form preview

Additional styling

Styling is made by expressing intent – not design. A button is not green, it is intended to express a succesful operation. So:

<!-- This -->
<button class="success">Yay!</button>

<!-- Not this -->
<button class="light-green">Derp!</button>

To find all components, possible modifiers and information on when to use them, visit:

  • Storybook for Angular
  • Storybook for React
  • Storybook for html/css (for when you definitely don't need a framework)

Missing components and/or help

If you cannot find the component you're looking for and/or want help switching to Green, see information on Green pilots

If you are up and running with Green and want to contribute a new component, see Contributions

Develop / Contribute

This is part of a monorepo. If you want to contribute, see Green

  • Watch all changes and auto generate css
    yarn dev
    
  • Run linter in editor
  • Run tests on editor or console
    yarn test --watchAll
    

FAQs

Package last updated on 09 Dec 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc