Last active
January 28, 2021 04:14
-
-
Save iqfareez/dd0c4cd263f30a85850b5cb6f755d6aa to your computer and use it in GitHub Desktop.
WhatsApp brand colour (From https://whatsappbrand.com/) - Flutter/Dart
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
// https://whatsappbrand.com/ | |
import 'package:flutter/material.dart'; | |
class WaBrandColour { | |
static const tealGreenDarker = Color(0xFF075E54); | |
static const tealGreenLighter = Color(0xFF128C7E); | |
static const lightGreen = Color(0xFF25D366); | |
static const white = Color(0xFFFFFFFF); | |
static const outgoingChatBubble = Color(0xFFDCF8C6); | |
static const checkmarkBlue = Color(0xFF34B7F1); | |
} |
Author
iqfareez
commented
Jan 28, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment