/phorkit

Phork/it is a React UI kit.

Primary LanguageTypeScriptMIT LicenseMIT

Phork/it

Tests Publish

To see examples and documentation go to https://phorkit.phork.org/.

Introduction

Phork/it is a UI kit built with React and TypeScript. It provides a customizable and accessible library of components that can be used to speed up React application development.

Getting started

Include the common styles and fonts in index.js.

import '@phork/phorkit/lib/styles/normalize.css';
import '@phork/phorkit/lib/styles/fonts.css';
import '@phork/phorkit/lib/styles/common.css';

Include the basic providers in App.js.

<ThemeProvider themeId={light | dark}>
  <AccessibilityProvider>
    <Modals>hello world</Modals>
  </AccessibilityProvider>
</ThemeProvider>

The Phork/it CSS files have also been published separately so that they can be used outside of React, or included in a custom React component.

Contribution guidelines for this project

Themes

Phork/it comes with a light theme and a dark theme. The primary accent color is a medium blue #0060ce in light mode, and a deep sky blue #00baee in dark mode.

These accent colors can be changed globally or on a per-component basis using CSS custom properties. For example:

:root {
  --phork-accent-color: #3e8e87;
  --phork-accent-color-L10: #53B4AB;
  --phork-accent-color-D10: #367C76;
  --phork-accent-color-L20: #7CC6BF;
  --phork-accent-color-D20: #2F6A65;
  --phork-accent-color-L30: #A4D7D3;
  --phork-accent-color-D30: #275954;
  --phork-accent-color-shade: #F1F7F6;
  --phork-accent-color-O5: rgba(62, 142, 135, 0.05);
  --phork-contrast-color: #3e8e87;
}

The documentation toolbar includes a widget to generate these colors.