import 'dart:ui';

import 'package:flutter/material.dart';

class NamedFontWeight {
  static const FontWeight medium = FontWeight.w500;
  static const FontWeight demiBold = FontWeight.w600;
  static const FontWeight bold = FontWeight.bold;
  static const FontWeight extraBold = FontWeight.w800;
}