mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
30 lines
No EOL
1.9 KiB
Dart
30 lines
No EOL
1.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Palette {
|
|
static const Color green = Color.fromRGBO(39, 206, 80, 1.0);
|
|
static const Color red = Color.fromRGBO(255, 51, 51, 1.0);
|
|
static const Color blueAlice = Color.fromRGBO(231, 240, 253, 1.0);
|
|
static const Color lightBlue = Color.fromRGBO(172, 203, 238, 1.0);
|
|
static const Color lavender = Color.fromRGBO(237, 245, 252, 1.0);
|
|
static const Color oceanBlue = Color.fromRGBO(30, 52, 78, 1.0);
|
|
static const Color lightBlueGrey = Color.fromRGBO(118, 131, 169, 1.0);
|
|
static const Color periwinkle = Color.fromRGBO(197, 208, 230, 1.0);
|
|
static const Color blue = Color.fromRGBO(88, 143, 252, 1.0);
|
|
static const Color darkLavender = Color.fromRGBO(225, 238, 250, 1.0);
|
|
static const Color nightBlue = Color.fromRGBO(46, 57, 96, 1.0);
|
|
}
|
|
|
|
class PaletteDark {
|
|
static const Color distantBlue = Color.fromRGBO(70, 85, 133, 1.0); // mainBackgroundColor
|
|
static const Color lightDistantBlue = Color.fromRGBO(81, 96, 147, 1.0); // borderCardColor
|
|
static const Color nightBlue = Color.fromRGBO(45, 56, 95, 1.0); // walletCardBottomEndSync
|
|
static const Color gray = Color.fromRGBO(140, 153, 201, 1.0); // walletCardText
|
|
static const Color violetBlue = Color.fromRGBO(51, 63, 104, 1.0); // walletCardAddressField
|
|
static const Color moderateBlue = Color.fromRGBO(63, 77, 122, 1.0); // walletCardSubAddressField
|
|
static const Color darkNightBlue = Color.fromRGBO(33, 43, 73, 1.0); // historyPanel
|
|
static const Color pigeonBlue = Color.fromRGBO(91, 112, 146, 1.0); // historyPanelText
|
|
static const Color moderateNightBlue = Color.fromRGBO(39, 53, 96, 1.0); // historyPanelButton
|
|
static const Color headerNightBlue = Color.fromRGBO(41, 52, 84, 1.0); // menuHeader
|
|
static const Color lightNightBlue = Color.fromRGBO(48, 59, 95, 1.0); // menuList
|
|
static const Color moderatePurpleBlue = Color.fromRGBO(57, 74, 95, 1.0); // selectButtonText
|
|
} |