defaultBorderRadius top-level constant

Map<String, double> const defaultBorderRadius

Default border radius scale matching Tailwind CSS

Implementation

const Map<String, double> defaultBorderRadius = {
  'none': 0.0,
  'sm': 2.0,      // 0.125rem
  '': 4.0,        // 0.25rem (default)
  'md': 6.0,      // 0.375rem
  'lg': 8.0,      // 0.5rem
  'xl': 12.0,     // 0.75rem
  '2xl': 16.0,    // 1rem
  '3xl': 24.0,    // 1.5rem
  'full': 9999.0, // 9999px
};