ksylvest/tights

View on GitHub
src/types/color.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type Color =
  | "white"
  | "light"
  | "dark"
  | "black"
  | "text"
  | "primary"
  | "link"
  | "info"
  | "success"
  | "warning"
  | "danger";