Files
rog_app/lib/theme/pallete.dart
Mohamed Nouffer a358f65853 start minimal
2023-06-02 10:50:56 +05:30

10 lines
453 B
Dart

import 'package:flutter/material.dart';
class Pallete {
static const Color BACKGROUND_COLOR = Color.fromRGBO(191, 33, 46, 1);
static const Color SEARCHBAR_COLOR = Color.fromRGBO(191, 33, 120, 1);
static const Color BLUE_COLOR = Color.fromRGBO(36, 163, 191, 1);
static const Color GREEN_COLOR = Color.fromRGBO(31, 140, 58, 1);
static const Color BROWN_COLOR = Color.fromRGBO(191, 135, 31, 1);
static const Color WHITE_COLOR = Colors.white;
}