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

Themes: Color the textSelectionHandle properly

This commit is contained in:
Vishesh Handa
2020-02-17 01:33:42 +01:00
parent b5b8639edd
commit fa6135d022

@ -8,6 +8,7 @@ class Themes {
primaryColorDark: const Color(0xFF338a3e),
accentColor: const Color(0xff6d4c41),
cursorColor: const Color(0xFF66bb6a),
textSelectionHandleColor: const Color(0xFF66bb6a),
);
static final dark = ThemeData(
@ -15,6 +16,7 @@ class Themes {
primaryColor: const Color(0xff212121),
accentColor: const Color(0xff689f38),
cursorColor: const Color(0xFF66bb6a),
textSelectionHandleColor: const Color(0xFF66bb6a),
toggleableActiveColor: const Color(0xFF66bb6a),
);
}