cake_wallet/lib/palette.dart
Oleksandr Sobol 204ae22054 Merge branch 'newdesign' into CWA-200-implement-menu-screen
# Conflicts:
#	lib/src/screens/dashboard/dashboard_page.dart
2020-05-01 22:13:58 +03:00

93 lines
No EOL
6 KiB
Dart

import 'package:flutter/material.dart';
class Palette {
static const Color lightBlue = Color.fromRGBO(126, 147, 177, 1.0);
static const Color lightBlueWithOpacity = Color.fromRGBO(126, 147, 177, 0.4);
static const Color lightGrey = Color.fromRGBO(224, 233, 246, 1.0);
static const Color purple = Color.fromRGBO(243, 229, 245, 1.0);
static const Color deepPink = Color.fromRGBO(225, 190, 231, 1.0);
static const Color indigo = Color.fromRGBO(232, 234, 246, 1.0);
static const Color deepIndigo = Color.fromRGBO(197, 202, 233, 1.0);
static const Color creamyGrey = Color.fromRGBO(245, 246, 249, 1.0);
static const Color deepPurple = Color.fromRGBO(124, 83, 240, 1.0);
static const Color wildDarkBlue = Color.fromRGBO(155, 172, 197, 1.0);
static const Color wildDarkBlueWithOpacity = Color.fromRGBO(155, 172, 197, 0.1);
static const Color lightGreen = Color.fromRGBO(52, 186, 204, 1.0);
static const Color darkPurple = Color.fromRGBO(124, 83, 240, 1.0);
static const Color brightBlue = Color.fromRGBO(151, 226, 255, 0.6);
static const Color cloudySky = Color.fromRGBO(121, 201, 233, 0.8);
static const Color darkGrey = Color.fromRGBO(136, 155, 183, 0.21);
static const Color shadowGrey = Color.fromRGBO(132, 141, 198, 0.14);
static const Color shadowGreyWithOpacity = Color.fromRGBO(132, 141, 198, 0.05);
static const Color blueGrey = Color.fromRGBO(103, 107, 141, 1.0);
static const Color lightGrey2 = Color.fromRGBO(249, 249, 249, 1.0);
static const Color violet = Color.fromRGBO(138, 80, 255, 1.0);
static const Color lightViolet = Color.fromRGBO(131, 87, 255, 1);
static const Color cakeGreen = Color.fromRGBO(41, 187, 244, 1.0);
static const Color cakeGreenWithOpacity = Color.fromRGBO(41, 187, 244, 0.2);
static const Color switchBackground = Color.fromRGBO(228, 231, 240, 1.0);
static const Color switchBorder = Color.fromRGBO(211, 222, 238, 1.0);
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 nightBlue = Color.fromRGBO(34, 40, 75, 1.0);
static const Color lavender = Color.fromRGBO(249, 250, 253, 1);
static const Color lightLavender = Color.fromRGBO(242, 244, 247, 1);
static const Color cadetBlue = Color.fromRGBO(191, 201, 215, 1);
static const Color manatee = Color.fromRGBO(138, 153, 175, 1);
static const Color separator = Color.fromRGBO(240, 241, 244, 1);
static const Color containerLavender = Color.fromRGBO(226, 235, 238, 0.4);
static const Color purpleBlue = Color.fromRGBO(84, 92, 139, 1);
static const Color floatingActionButton = Color.fromRGBO(213, 56, 99, 1);
static const Color failure = Color.fromRGBO(226, 35, 35, 1);
static const Color powered = Color.fromRGBO(191, 201, 215, 1);
static const Color buttonShadow = Color.fromRGBO(23, 46, 77, 0.129207);
}
class PaletteDark {
static const Color darkThemeTitle = Color.fromRGBO(132, 154, 186, 1.0);
static const Color darkThemeTitleViolet = Color.fromRGBO(121, 92, 190, 1.0);
static const Color darkThemeGrey = Color.fromRGBO(100, 115, 137, 1.0);
static const Color darkThemeGreyWithOpacity = Color.fromRGBO(100, 115, 137, 0.5);
static const Color darkThemeMidGrey = Color.fromRGBO(20, 26, 38, 1.0);
static const Color darkThemePurpleButton = Color.fromRGBO(182, 143, 255, 0.1);
static const Color darkThemePurpleButtonBorder = Color.fromRGBO(161, 120, 255, 0.7);
static const Color darkThemeBackground = Color.fromRGBO(39, 41, 50, 1.0);
static const Color darkThemeBackgroundDark = Color.fromRGBO(9, 12, 18, 1.0);
static const Color darkThemeDarkGrey = Color.fromRGBO(218, 228, 243, 0.06);
static const Color darkGrey = Color.fromRGBO(218, 228, 243, 0.4);
static const Color darkThemeBlackWithOpacity = Color.fromRGBO(0, 0, 0, 0.2);
static const Color darkThemeBlack = Color.fromRGBO(7, 10, 14, 1.0);
static const Color darkThemeAppBarBlack = Color.fromRGBO(4, 5, 7, 1.0);
static const Color darkThemeViolet = Color.fromRGBO(131, 87, 255, 0.2);
static const Color darkThemeIndigoButton = Color.fromRGBO(216, 223, 246, 0.1);
static const Color darkThemeIndigoButtonBorder = Color.fromRGBO(196, 206, 237, 0.4);
static const Color darkThemeBlueButton = Color.fromRGBO(151, 226, 255, 0.1);
static const Color darkThemeBlueButtonBorder = Color.fromRGBO(62, 190, 240, 0.6);
static const Color darkThemeCloseButton = Color.fromRGBO(34, 40, 74, 1.0);
static const Color darkThemePinButton = Color.fromRGBO(136, 155, 183, 0.1);
static const Color darkThemePinDigitButton = Color.fromRGBO(100, 115, 137, 0.34);
static const Color switchBackground = Color.fromRGBO(100, 115, 137, 0.4);
static const Color wildDarkBlueWithOpacity = Color.fromRGBO(155, 172, 197, 0.4);
static const Color wildDarkBlue = Color.fromRGBO(155, 172, 197, 0.8);
// NEW
static const Color backgroundStart = Color.fromRGBO(231, 240, 253, 1.0);
static const Color backgroundEnd = Color.fromRGBO(172, 203, 238, 1.0);
static const Color mainBackgroundColor = Color.fromRGBO(70, 85, 133, 1.0);
static const Color borderCardColor = Color.fromRGBO(81, 96, 147, 1.0);
static const Color walletCardTopStartSync = Color.fromRGBO(89, 104, 152, 1.0);
static const Color walletCardBottomStartSync = Color.fromRGBO(70, 85, 133, 1.0);
static const Color walletCardTopEndSync = Color.fromRGBO(70, 85, 133, 1.0);
static const Color walletCardBottomEndSync = Color.fromRGBO(45, 56, 95, 1.0);
static const Color walletCardText = Color.fromRGBO(140, 153, 201, 1.0);
static const Color walletCardAddressField = Color.fromRGBO(51, 63, 104, 1.0);
static const Color walletCardAddressText = Color.fromRGBO(183, 197, 242, 1.0);
static const Color walletCardSubAddressField = Color.fromRGBO(63, 77, 122, 1.0);
static const Color historyPanel = Color.fromRGBO(33, 43, 73, 1.0);
static const Color historyPanelText = Color.fromRGBO(91, 112, 146, 1.0);
static const Color historyPanelButton = Color.fromRGBO(39, 53, 96, 1.0);
static const Color menuHeader = Color.fromRGBO(41, 52, 84, 1.0);
static const Color menuList = Color.fromRGBO(48, 59, 95, 1.0);
static const Color menuDivider = Color.fromRGBO(48, 59, 95, 1.0);
}