45 lines
1.1 KiB
Dart
45 lines
1.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ColorPair {
|
|
final Color textColor;
|
|
final Color backgroundColor;
|
|
final String name;
|
|
|
|
ColorPair(
|
|
{required this.name,
|
|
required this.textColor,
|
|
required this.backgroundColor});
|
|
}
|
|
|
|
List<ColorPair> colorPairs = [
|
|
ColorPair(
|
|
name: "origin",
|
|
textColor: Color(0xff446F2F),
|
|
backgroundColor: Color(0xffC9E7BB)),
|
|
ColorPair(
|
|
name: "lavender",
|
|
textColor: Color(0xff765EAB),
|
|
backgroundColor: Color(0xffD3CAE7)),
|
|
ColorPair(
|
|
name: "orange",
|
|
textColor: Color(0xffC78233),
|
|
backgroundColor: Color(0xffF0CFA9)),
|
|
ColorPair(
|
|
name: "rose",
|
|
textColor: Color(0xffB15555),
|
|
backgroundColor: Color(0xffEBD6D6)),
|
|
ColorPair(
|
|
name: "mountain",
|
|
textColor: Color(0xff1D6289),
|
|
backgroundColor: Color(0xffB4D0E0)),
|
|
ColorPair(
|
|
name: "moon",
|
|
textColor: Color(0xff7A83C7),
|
|
backgroundColor: Color(0xff393C55)),
|
|
ColorPair(
|
|
name: "forest",
|
|
textColor: Color(0xffC9E7BB),
|
|
backgroundColor: Color(0xff4C5847)),
|
|
// ...add other color pairs with names...
|
|
];
|