ui: Make colors a bit better
I was too lazy to move it into its own branch (or master)
This commit is contained in:
parent
b952b73738
commit
0021d0d84d
@ -11,10 +11,10 @@ const EdgeInsetsGeometry textfieldPaddingConversation = EdgeInsets.all(10);
|
||||
const int primaryColorHexRGBO = 0xffcf4aff;
|
||||
const Color primaryColor = Color(primaryColorHexRGBO);
|
||||
|
||||
const Color bubbleColorSent = Color(0xffac70ca);
|
||||
const Color bubbleColorSentQuoted = Color(0xff964db3);
|
||||
const Color bubbleColorSent = Color(0xffa139f0);
|
||||
const Color bubbleColorSentQuoted = bubbleColorSent;
|
||||
const Color bubbleColorReceived = Color(0xff222222);
|
||||
const Color bubbleColorReceivedQuoted = Color(0xff2c3e50);
|
||||
const Color bubbleColorReceivedQuoted = bubbleColorReceived;
|
||||
|
||||
const double paddingVeryLarge = 64;
|
||||
|
||||
|
@ -38,15 +38,14 @@ class TextChatWidget extends StatelessWidget {
|
||||
child: ParsedText(
|
||||
text: message.body,
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
color: const Color(0xf9ebffff),
|
||||
fontSize: fontsize,
|
||||
),
|
||||
parse: [
|
||||
MatchText(
|
||||
type: ParsedType.URL,
|
||||
style: const TextStyle(
|
||||
// TODO(Unknown): Work on the color
|
||||
color: Colors.blue,
|
||||
decoration: TextDecoration.underline,
|
||||
),
|
||||
onTap: (url) async {
|
||||
await launchUrl(
|
||||
|
Loading…
Reference in New Issue
Block a user