I'm following a Chakra/React tutorial and encountered the following:
const theme = extendTheme({
colors: {
brand: {
50: "#f0e4ff",
100: "#cbb2ff",
200: "#a480ff",
300: "#7a4dff",
400: "#641bfe",
500: "#5a01e5",
600: "#5200b3",
700: "#430081",
800: "#2d004f",
900: "#14001f",
},
},
fonts: {
heading: `'Inter', sans-serif`,
body: `'Inter', sans-serif`,
},
});
See https://www.saasbase.dev/build-a-landing-page-using-chakra-ui/
What do the numeric labels represent?