mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-15 07:56:11 +08:00

Avoid the green color when in the dark theme. It was clashing quite a bit. Lets just go with complete dark shades for now. It's still really missing something, though I'm not sure what.
18 lines
432 B
Dart
18 lines
432 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Themes {
|
|
static final light = ThemeData(
|
|
brightness: Brightness.light,
|
|
primaryColor: Color(0xFF66bb6a),
|
|
primaryColorLight: Color(0xFF98ee99),
|
|
primaryColorDark: Color(0xFF338a3e),
|
|
accentColor: Color(0xff6d4c41),
|
|
);
|
|
|
|
static final dark = ThemeData(
|
|
brightness: Brightness.dark,
|
|
primaryColor: Color(0xff212121),
|
|
accentColor: Color(0xff689f38),
|
|
);
|
|
}
|