Fix colors (#1311)

* Fix colors * Update colors * oops

tuxsudo committed Feb 23, 2024 at 15:00 UTC 948669b5c2fc3464f548e7c725f2a7c1e8936c89
1 file changed +3 -3
lib/palette.dart
+3 -3
@@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
3 class Palette {
4 static const Color green = Color.fromRGBO(39, 206, 80, 1.0);
5 static const Color red = Color.fromRGBO(255, 51, 51, 1.0);
6 - static const Color darkRed = Color.fromRGBO(204, 38, 38, 1.0);
6 + static const Color darkRed = Color.fromRGBO(205, 0, 0, 1.0);
7 static const Color blueAlice = Color.fromRGBO(229, 247, 255, 1.0);
8 static const Color lightBlue = Color.fromRGBO(172, 203, 238, 1.0);
9 static const Color lavender = Color.fromRGBO(237, 245, 252, 1.0);
@@ -98,6 +98,6 @@ class PaletteDark {
98 static const Color matrixGreen = Color.fromRGBO(18, 229, 90, 1.0);
99 static const Color moneroOrange = Color.fromRGBO(255, 102, 0, 1.0);
100 static const Color moneroCard = Color.fromRGBO(20, 21, 24, 1.0);
101 - static const Color red = Color.fromRGBO(190, 30, 30, 1.0);
102 - static const Color darkPurple = Color.fromRGBO(117, 36, 204, 1.0);
101 + static const Color red = Color.fromRGBO(195, 0, 0, 1.0);
102 + static const Color darkPurple = Color.fromRGBO(109, 14, 210, 1.0);
103 }