Earlier quoted context omitted.
Not really. Tailwind lets you configure your own spacing and breakpoints. You get to pick what those numbers mean.
That's just a CSS variable. You don't need Tailwind for that.
import type { Config } from 'tailwindcss'
export default {
content: [],
theme: {
extend: {},
},
plugins: [],
} satisfies Config
(not arguing for or against TW here)