fontWeightSectionHeader property

  1. @override
Token get fontWeightSectionHeader

Font weight for section headers (default: 600, CSS variable: --naki-font-weight-section-header).

Implementation

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