baka-material-you
TypeScript icon, indicating that this package has built-in type declarations

0.1.0-alpha.0 • Public • Published
Shows the logo of the project. An origami followed by the Baka UI text

A super dummy set of design system primitives

Getting started

Installation

  1. Install the ui package
npm install baka-ui
  1. Install the a design package
npm install baka-material-you

Usage

import { BakaButton } from "baka-ui";
import "baka-material-you/dist/index.css";

const App = () => <BakaButton>Click me</BakaButton>;

Features

BakaUI embraces a Less is more philosophy. It provides a set of design system primitives which can be used to build complex UIs by following simple guidelines. Here are some of the features of baka-ui you can utilize to build your Design System.

Composable

UI is composed from multiple atomic components to achieve more-complex designs.

<BakaTextField>
  <BakaLabel>Label</BakaLabel>
  <BakaInput />
  <BakaButton>
    <BakaIcon>search</BakaIcon>
  </BakaButton>
</BakaTextField>

Theming

Change the appearance of the components using themes & swatches by utilizing css & scss variables.

@use "baka-material-you" as material-you;
@use "baka-material-you/themes/dark" as dark-swatch;

:root {
  @include materila-you.styles();

  @media screen and (prefers-color-scheme: dark) {
    @include dark-swatch.design-styles();
  }
}

Tailwind Integration

BakaUI semlessly integrates with TailwindCSS by providing a preset which can be used to extend the default TailwindCSS configuration and provide costitent look & feel between component-level & layout styles.

// tailwind.config.js
module.exports = {
  // ...
  presets: [require("baka-material-you/tailwind")],
};

Typescript Support

Apply contextual typings according to your design system.

// The `variant` prop is typed according to the design system in use
<BakaButton variant={["filled", "icon"]}>Click me</BakaButton>

Principles

The baka-ui is built on top of basic design system principles which are followed strictly.

Modularity

Each design system is built by extracting common modules from it. For example, the baka-material-you design system exposes the following modules:

  • colors
  • typography
  • iconography
  • elevation
  • layout
  • motion

Atomic Composition

Each component renders a exactly one polymorphic element. UI is composed from multiple atomic components to achieve more-complex designs.

<BakaTextField>
  <BakaTextField>
  <BakaLabel>Label</BakaLabel>
  <BakaInput />
  <BakaButton>
    <BakaIcon>search</BakaIcon>
  </BakaButton>
</BakaTextField>

Variants

Each component has a set of variants which can be used to change the appearance of the component.

<BakaButton variant="filled">Click me</BakaButton>
<BakaButton variant="text">Click me</BakaButton>
<BakaButton variant="outlined">Click me</BakaButton>

Variants can be combined to create more complex components.

<BakaButton variant={["filled", "icon"]}>Click me</BakaButton>

States

Each component has a set of states which can be used to change the appearance of the component based on the state.

<BakaButton hovered={true}>Hovered</BakaButton>
<BakaButton selected={true}>Selected</BakaButton>
<BakaButton activated={true}>Pressed</BakaButton>

Readme

Keywords

none

Package Sidebar

Install

npm i baka-material-you

Homepage

baka-ui.com

Weekly Downloads

1

Version

0.1.0-alpha.0

License

MIT

Unpacked Size

8.43 kB

Total Files

8

Last publish

Collaborators

  • kspeyanski