mirror of
https://github.com/nisrulz/flutter-examples.git
synced 2025-11-09 04:58:58 +00:00
BMI calculator example (#130)
This commit is contained in:
14
bmi_calculator/lib/palette.dart
Normal file
14
bmi_calculator/lib/palette.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
// Color constants
|
||||
class Palette {
|
||||
static const background = Color(0xFF0A0D22);
|
||||
static const cardBackgroundInactive = Color(0xFF121428);
|
||||
static const cardBackgroundActive = Color(0xFF1D1F33);
|
||||
static const textInactive = Color(0xFF8D8E99);
|
||||
static const textActive = Color(0xFFFFFFFF);
|
||||
static const action = Color(0xFFEC1554);
|
||||
static const normalResult = Color(0xFF4BE57A);
|
||||
static const underweightResult = Color(0xFFE5D94B);
|
||||
static const overWeightResult = Color(0xFFE54B4B);
|
||||
}
|
||||
Reference in New Issue
Block a user