2019-09-15 02:33:07 +03:00
|
|
|
import 'dart:ui';
|
|
|
|
|
2022-10-31 01:49:11 +01:00
|
|
|
const backgroundGreen = Color.fromRGBO(5, 66, 10, 1);
|
|
|
|
const foregroundGreen = Color.fromRGBO(20, 180, 50, 1);
|
2019-09-15 02:33:07 +03:00
|
|
|
|
2022-10-31 01:49:11 +01:00
|
|
|
const backgroundRed = Color.fromRGBO(66, 10, 5, 1);
|
2019-09-15 02:33:07 +03:00
|
|
|
|
2022-10-31 01:49:11 +01:00
|
|
|
const foregroundWhite = Color.fromRGBO(240, 250, 240, 1);
|
2019-09-15 02:33:07 +03:00
|
|
|
|
2022-10-31 01:49:11 +01:00
|
|
|
const foregroundDarkGrey = Color.fromRGBO(55, 55, 55, 1);
|