fontWeightSemiBold property

  1. @override
Token get fontWeightSemiBold

Semi-bold font weight (default: 600, CSS variable: --naki-font-weight-semibold).

Implementation

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