Socket
Socket
Sign inDemoInstall

@sebgroup/chlorophyll

Package Overview
Dependencies
1
Maintainers
3
Versions
115
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @sebgroup/chlorophyll

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


Version published
Weekly downloads
7.3K
decreased by-7.78%
Maintainers
3
Created
Weekly downloads
 

Readme

Source
chlorophyll

@sebgroup/green-core

Chlorophyll a styling framework for Green Design System front-end components. It is primarily used to style the components in the React and Angular libraries, but also contains grid and utility classes.

Install

It is not recommended to use Chlorophyll directly to style your own components - instead use what is available in the React or Angular libraries, or contribute what you are missing.

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 use-green (we recommend that you scope the CSS so that it only affects elements yo intend to style).

<body class="use-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="use-green">
  <form>
    <div class="form-group">
      <label for="formInput1">Input</label>
      <span class="form-info" id="formInfo1">Some info or help</span>
      <input id="formInput1" type="text" aria-describedby="formInfo1" />
    </div>
    <button type="submit">Send</button>
  </form>
</div>

...will look like this:

Screenshot 2022-06-28 at 09 47 52

Additional styling

Styling is made by expressing intent – not design. A button is not green, it is intended to express a successful 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

Contribute

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

FAQs

Last updated on 26 Apr 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc