Last active
July 10, 2020 16:06
-
-
Save mukireus/89704e50a09c63f64c507b3b0d59ac42 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class AppColors { | |
// Light Color | |
static const Color colorLightPrimary = Color(0xFF5C93C4); | |
static const Color colorLightSecondary = Color(0xFFF9F6E5); | |
static const Color colorLightCardColors = Color(0xFFFFFFFF); | |
// #Light Color | |
// Light Color | |
static const Color colorDarkPrimary = Color(0xFF222831); | |
static const Color colorDarkSecondary = Color(0xFF30475E); | |
static const Color colorDarkThird = Color(0xFFF2A365); | |
static const Color colorDarkTitle = Color(0xFFECECEC); | |
// #Light Color | |
// Get Started | |
static const Color colorStarted = Color(0xFF274C71); | |
static const Color colorStartedTitle = Color(0xFF352641); | |
static const Color colorStartedDescription = Color(0xFF767676); | |
static const Color colorStartedShadow = Color(0x60274C71); | |
// #Get Started | |
// Alert Dialog | |
static const Color colorAlertDialogBack = Color(0xFFF8F7F2); | |
// #Alert Dialog | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment