Files
GitJournal/lib/themes.dart
Vishesh Handa e61e407739 Theme: Overwrite the cursor color
This blue cursor color just doesn't go with the rest of the theme.
2020-01-27 23:57:53 +01:00

20 lines
552 B
Dart

import 'package:flutter/material.dart';
class Themes {
static final light = ThemeData(
brightness: Brightness.light,
primaryColor: const Color(0xFF66bb6a),
primaryColorLight: const Color(0xFF98ee99),
primaryColorDark: const Color(0xFF338a3e),
accentColor: const Color(0xff6d4c41),
cursorColor: const Color(0xFF66bb6a),
);
static final dark = ThemeData(
brightness: Brightness.dark,
primaryColor: const Color(0xff212121),
accentColor: const Color(0xff689f38),
cursorColor: const Color(0xFF66bb6a),
);
}