twonly-app/lib/src/themes/dark.dart
2026-02-09 23:45:34 +01:00

13 lines
418 B
Dart

import 'package:flutter/material.dart';
final ThemeData darkTheme = ThemeData.dark().copyWith(
colorScheme: ColorScheme.fromSeed(
brightness: Brightness.dark,
seedColor: const Color(0xFF57CC99),
surface: const Color.fromARGB(255, 20, 18, 23),
surfaceContainer: const Color.fromARGB(255, 33, 30, 39),
),
inputDecorationTheme: const InputDecorationTheme(
border: OutlineInputBorder(),
),
);