// This file is generated automatically by src/scripts/build/cssToTs/cssToTs.ts, please don't edit.

import { assert } from "tsafe/assert";
import type { Extends } from "tsafe";

export const breakpointValuesUnit = "em";

export const breakpointKeys = ["xs", "sm", "md", "lg", "xl"] as const;

export type BreakpointKeys = typeof breakpointKeys[number];

export const breakpointValues = {
    "xs": 0,
    "sm": 36,
    "md": 48,
    "lg": 62,
    "xl": 78
} as const;

assert<Extends<typeof breakpointValues, Record<BreakpointKeys, number>>>();
