Asset-Borrowing-App / lib / Project / utils / utils.dart
utils.dart
Raw
import 'package:flutter/material.dart';

const kTitleStyle = TextStyle(
  color: Colors.white,
  fontSize: 28,
  letterSpacing: 1.5,
  fontWeight: FontWeight.bold,
);

const kNormalStyle = TextStyle(
  color: Colors.black,
  fontSize: 15,
  fontWeight: FontWeight.w600,
);
const kGreyColor = TextStyle(
  color: Colors.black,
  fontSize: 15,
  fontWeight: FontWeight.w600,
);