@faisalm29

Faisal M.

Insignificant Other

1 min read

Hello world

This is my first post! … rest of the content

This is H2

tokens.ts
export const tokens = {
  colors: {
    primary: {
      50: "#eff6ff",
      500: "#3b82f6",
      900: "#1e3a8a",
    },
    neutral: {
      0: "#ffffff",
      100: "#f5f5f5",
      900: "#171717",
    },
  },
  spacing: {
    xs: "0.25rem",
    sm: "0.5rem",
    md: "1rem",
    lg: "1.5rem",
    xl: "2rem",
  },
  radii: {
    sm: "0.25rem",
    md: "0.5rem",
    lg: "1rem",
    full: "9999px",
  },
} as const;

This is H3