fontWeightNormal property

  1. @override
Token get fontWeightNormal

Normal font weight (default: 400, CSS variable: --naki-font-weight-normal).

Implementation

@override
Token get fontWeightNormal => typography?.fontWeightNormal != null
    ? Token(
        value: typography!.fontWeightNormal.toString(),
        name: super.fontWeightNormal.name,
      )
    : super.fontWeightNormal;