Skip to content

Instantly share code, notes, and snippets.

View joukhar's full-sized avatar
💭
nothing

joukhar

💭
nothing
View GitHub Profile
@joukhar
joukhar / themes.dart
Created October 28, 2023 19:27 — forked from xrnd/themes.dart
Create custom themes for your flutter app
class Themes {
static const MaterialColor darkBlue = const MaterialColor(
_bluePrimaryValue,
const <int, Color>{
50: const Color(0xFFECEFF1),
100: const Color(0xFFCFD8DC),
200: const Color(0xFFB0BEC5),
300: const Color(0xFF90A4AE),
400: const Color(0xFF78909C),
500: const Color(_bluePrimaryValue),