a89c7894cf
Backend: - FastAPI avec PostgreSQL et Redis - Authentification JWT complète - API REST pour musique, playlists, recherche - Streaming audio via yt-dlp - SQLAlchemy 2.0 async Frontend: - Flutter avec thème néon cyberpunk - State management Riverpod - Layout adaptatif desktop/mobile - Lecteur audio avec mini-player Infrastructure: - Docker Compose (PostgreSQL + Redis) - Scripts d'installation automatisés - Scripts de build pour exécutables Fichiers ajoutés: - BUILD_CLIENT_*.bat/sh: Scripts de compilation - BUILD_CLIENT_README.md: Documentation compilation - CHECK_FLUTTER.sh: Vérificateur d'environnement - requirements.txt mis à jour pour Python 3.13 - Modèles SQLAlchemy corrigés (metadata -> extra_metadata) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
90 lines
2.0 KiB
Dart
90 lines
2.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'colors.dart';
|
|
|
|
/// App Text Styles - Neon Cyberpunk Theme
|
|
class AppTextStyles {
|
|
AppTextStyles._();
|
|
|
|
// Font family
|
|
static const String fontFamily = 'Outfit';
|
|
|
|
// Heading 1 - 32px Bold
|
|
static const TextStyle h1 = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 32,
|
|
fontWeight: FontWeight.w700,
|
|
color: AppColors.onBackground,
|
|
letterSpacing: -0.5,
|
|
);
|
|
|
|
// Heading 2 - 24px SemiBold
|
|
static const TextStyle h2 = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.w600,
|
|
color: AppColors.onBackground,
|
|
letterSpacing: -0.25,
|
|
);
|
|
|
|
// Heading 3 - 20px SemiBold
|
|
static const TextStyle h3 = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 20,
|
|
fontWeight: FontWeight.w600,
|
|
color: AppColors.onBackground,
|
|
);
|
|
|
|
// Body Large - 16px Regular
|
|
static const TextStyle bodyLarge = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.w400,
|
|
color: AppColors.onBackground,
|
|
height: 1.5,
|
|
);
|
|
|
|
// Body - 14px Regular
|
|
static const TextStyle body = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w400,
|
|
color: AppColors.onSurface,
|
|
height: 1.5,
|
|
);
|
|
|
|
// Body Small - 12px Regular
|
|
static const TextStyle bodySmall = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 12,
|
|
fontWeight: FontWeight.w400,
|
|
color: AppColors.muted,
|
|
height: 1.4,
|
|
);
|
|
|
|
// Caption - 12px Regular
|
|
static const TextStyle caption = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 12,
|
|
fontWeight: FontWeight.w400,
|
|
color: AppColors.muted,
|
|
height: 1.3,
|
|
);
|
|
|
|
// Button - 14px SemiBold
|
|
static const TextStyle button = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w600,
|
|
color: AppColors.primary,
|
|
letterSpacing: 0.5,
|
|
);
|
|
|
|
// Label - 14px Medium
|
|
static const TextStyle label = TextStyle(
|
|
fontFamily: fontFamily,
|
|
fontSize: 14,
|
|
fontWeight: FontWeight.w500,
|
|
color: AppColors.onSurface,
|
|
);
|
|
}
|