textStyle constant

ReownAppKitModalTextStyles const textStyle

Implementation

static const textStyle = ReownAppKitModalTextStyles(
  fontFamily: _ff,
  title400: TextStyle(
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w400,
    fontSize: 24.0,
  ),
  title500: TextStyle(
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w500,
    fontSize: 24.0,
  ),
  title600: TextStyle(
    fontWeight: FontWeight.w600,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontSize: 24.0,
  ),
  large400: TextStyle(
    fontSize: 20.0,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w400,
  ),
  large500: TextStyle(
    fontSize: 20.0,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w500,
  ),
  large600: TextStyle(
    fontSize: 20.0,
    fontWeight: FontWeight.w600,
    fontFamily: _ff,
    letterSpacing: -0.04,
  ),
  paragraph400: TextStyle(
    fontSize: 16.0,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w400,
  ),
  paragraph500: TextStyle(
    fontSize: 16.0,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w500,
  ),
  paragraph600: TextStyle(
    fontSize: 16.0,
    fontWeight: FontWeight.w600,
    fontFamily: _ff,
    letterSpacing: -0.04,
  ),
  small400: TextStyle(
    fontSize: 14.0,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w400,
  ),
  small500: TextStyle(
    fontSize: 14.0,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w500,
  ),
  small600: TextStyle(
    fontSize: 14.0,
    fontWeight: FontWeight.w600,
    fontFamily: _ff,
    letterSpacing: -0.04,
  ),
  tiny400: TextStyle(
    fontSize: 12.0,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w400,
  ),
  tiny500: TextStyle(
    fontSize: 12.0,
    fontFamily: _ff,
    letterSpacing: -0.04,
    fontWeight: FontWeight.w500,
  ),
  tiny600: TextStyle(
    fontSize: 12.0,
    fontWeight: FontWeight.w600,
    fontFamily: _ff,
    letterSpacing: -0.04,
  ),
  micro600: TextStyle(
    fontSize: 10.0,
    fontWeight: FontWeight.w600,
    letterSpacing: 0.02,
    fontFamily: _ff,
  ),
  micro700: TextStyle(
    fontSize: 10.0,
    fontWeight: FontWeight.w700,
    letterSpacing: 0.02,
    fontFamily: _ff,
  ),
);