/
Mot0511
/
teamup
Обзор
Документация
Войти
/
Mot0511
/
teamup
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/theme.dart
42 строки
1 KB
Matvey
_
28 янв 2026, 21:01
28 янв 2026, 21:01
c939e15
Код
Авторство
О чём код?
import 'package:flutter/material.dart'; final textBase = TextStyle(color: Colors.white); final textTheme = TextTheme( displayMedium: textBase.copyWith(fontSize: 35), titleLarge: textBase.copyWith(fontSize: 24), titleMedium: textBase.copyWith(fontSize: 18), labelLarge: textBase.copyWith(fontSize: 20), labelMedium: textBase.copyWith(fontSize: 18), labelSmall: textBase.copyWith(fontSize: 13), headlineLarge: textBase.copyWith(fontSize: 35), headlineMedium: textBase.copyWith(fontSize: 28), ); final ColorScheme colorScheme = const ColorScheme( brightness: Brightness.dark, primary: Color(0xff016335), onPrimary: Colors.black, secondary: Color(0xFF00838F), onSecondary: Colors.white, error: Color.fromARGB(255, 153, 10, 0), onError: Color.fromARGB(255, 0, 0, 0), surface: Color(0xff016335), onSurface: Color.fromARGB(255, 255, 255, 255), ); final theme = ThemeData( primaryColor: Color(0xff016335), colorScheme: colorScheme, appBarTheme: AppBarTheme( backgroundColor: Color(0xff1A1A1A), titleTextStyle: textBase.copyWith(fontSize: 24), iconTheme: const IconThemeData( color: Colors.white, ) ), scaffoldBackgroundColor: Color(0xff1A1A1A), textTheme: textTheme, cardColor: Color.fromARGB(255, 36, 35, 35), canvasColor: const Color.fromARGB(255, 36, 35, 35), );