Fix colors (#1311)

* Fix colors

* Update colors

* oops
This commit is contained in:
tuxsudo 2024-02-23 15:00:16 -05:00 committed by GitHub
parent 52983edf91
commit 948669b5c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ import 'package:flutter/material.dart';
class Palette { class Palette {
static const Color green = Color.fromRGBO(39, 206, 80, 1.0); static const Color green = Color.fromRGBO(39, 206, 80, 1.0);
static const Color red = Color.fromRGBO(255, 51, 51, 1.0); static const Color red = Color.fromRGBO(255, 51, 51, 1.0);
static const Color darkRed = Color.fromRGBO(204, 38, 38, 1.0); static const Color darkRed = Color.fromRGBO(205, 0, 0, 1.0);
static const Color blueAlice = Color.fromRGBO(229, 247, 255, 1.0); static const Color blueAlice = Color.fromRGBO(229, 247, 255, 1.0);
static const Color lightBlue = Color.fromRGBO(172, 203, 238, 1.0); static const Color lightBlue = Color.fromRGBO(172, 203, 238, 1.0);
static const Color lavender = Color.fromRGBO(237, 245, 252, 1.0); static const Color lavender = Color.fromRGBO(237, 245, 252, 1.0);
@ -98,6 +98,6 @@ class PaletteDark {
static const Color matrixGreen = Color.fromRGBO(18, 229, 90, 1.0); static const Color matrixGreen = Color.fromRGBO(18, 229, 90, 1.0);
static const Color moneroOrange = Color.fromRGBO(255, 102, 0, 1.0); static const Color moneroOrange = Color.fromRGBO(255, 102, 0, 1.0);
static const Color moneroCard = Color.fromRGBO(20, 21, 24, 1.0); static const Color moneroCard = Color.fromRGBO(20, 21, 24, 1.0);
static const Color red = Color.fromRGBO(190, 30, 30, 1.0); static const Color red = Color.fromRGBO(195, 0, 0, 1.0);
static const Color darkPurple = Color.fromRGBO(117, 36, 204, 1.0); static const Color darkPurple = Color.fromRGBO(109, 14, 210, 1.0);
} }