You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class Constants {
|
|
|
|
static const double kPadding = 10.0;
|
|
|
|
static const Color greenDark = Color(0Xff008a8d);
|
|
|
|
static const Color green = Color(0Xff00b3b7);
|
|
|
|
static const Color greenLight = Color(0Xffb2e8e9);
|
|
|
|
static const Color orange = Color(0XFFec8d2f);
|
|
|
|
static const Color red = Color(0XFFf44336);
|
|
|
|
static const Color colorAppBar = Color(0xff5b5b66);
|
|
|
|
static const Color colorAppBarBg = Color(0xfff9f9fb);
|
|
|
|
static const Color colorIconDelete = Color(0xffd3d3d3);
|
|
|
|
static const colorScaffoldBg = Color(0Xffcae5df);
|
|
|
|
|
|
|
|
static const Color colorLoginBorderInactive = Colors.white54;
|
|
|
|
|
|
|
|
static const Color buttonPositiveColor = Color(0xff65d372);
|
|
|
|
static const fontExtraBigSize = 22.0;
|
|
|
|
static const fontBigSize = 18.0;
|
|
|
|
static const fontMediumSize = 16.0;
|
|
|
|
static const fontSmallSize = 14.0;
|
|
|
|
static String appVersion = "v0.1";
|
|
|
|
static String baseUrl = "http://devone.aplikasi.web.id/one-api/mitra/";
|
|
|
|
|
|
|
|
static const Color colorNegative = Color(0xff95424E);
|
|
|
|
}
|