Skip to content

Commit

Permalink
feat: update color scheme (#1483)
Browse files Browse the repository at this point in the history
  • Loading branch information
validcube authored Nov 11, 2023
1 parent 08a18e0 commit dbf1fc4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';

var lightCustomColorScheme = ColorScheme.fromSeed(
seedColor: Colors.blue,
primary: const Color(0xff1B73E8),
seedColor: Colors.purple,
primary: const Color(0xFF4C51C0),
);

var lightCustomTheme = ThemeData(
Expand All @@ -21,10 +21,10 @@ var lightCustomTheme = ThemeData(
);

var darkCustomColorScheme = ColorScheme.fromSeed(
seedColor: Colors.blue,
seedColor: Colors.purple,
brightness: Brightness.dark,
primary: const Color(0xffA5CAFF),
surface: const Color(0xff1B1A1D),
primary: const Color(0xFFBFC1FF),
surface: const Color(0xFF131316),
);

var darkCustomTheme = ThemeData(
Expand All @@ -38,7 +38,7 @@ var darkCustomTheme = ThemeData(
),
),
),
canvasColor: const Color(0xff1B1A1D),
scaffoldBackgroundColor: const Color(0xff1B1A1D),
canvasColor: const Color(0xFF131316),
scaffoldBackgroundColor: const Color(0xFF131316),
textTheme: GoogleFonts.robotoTextTheme(ThemeData.dark().textTheme),
);

0 comments on commit dbf1fc4

Please sign in to comment.