master
Rafael 2024-04-29 13:59:35 +02:00
parent a03474b77b
commit 59730c918a
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
ThemeData darkMode = ThemeData(
colorScheme: ColorScheme.dark(
background: Colors.grey.shade900,
primary: Colors.grey.shade600,
secondary: Colors.grey.shade700,
tertiary: Colors.grey.shade800,
inversePrimary: Colors.grey.shade300,
),
);