zepio/app/theme/colors/light.js

123 lines
2.7 KiB
JavaScript
Raw Normal View History

// @flow
2019-02-15 18:59:05 -08:00
const white = '#FFFFFF';
const whiteHover = '#F9FBFE';
2019-02-15 18:59:05 -08:00
const offWhite = '#F9F9F9';
const black = '#000000';
const text = '#142533';
2019-02-15 18:59:05 -08:00
const secondaryText = '#777777';
const brand = '#5684EB';
const error = '#FF6C6C';
const success = '#66BE54';
2019-02-15 18:59:05 -08:00
const logo = '#F4B728';
const logo2 = '#FFE240';
const border = '#DDDDDD';
export const LIGHT_COLORS = {
// General
2019-02-15 18:59:05 -08:00
background: offWhite,
text,
darkOne: brand,
blackTwo: '#171717',
lightOne: white,
brandOne: '#000',
2019-02-15 18:59:05 -08:00
brandThree: '#5D5D65',
buttonBorderColor: '#3E3C42',
activeItem: brand,
// Dropdown
dropdownBg: offWhite,
dropdownHoveredBg: white,
dropdownBorder: border,
dropdownIconBorder: '#c1c1c1',
dropdownOpenedIconBorder: '#828282',
// Buttons
buttonPrimaryBg: brand,
buttonPrimaryDisabledBg: brand,
buttonPrimaryText: white,
buttonSecondaryBg: '#989898',
buttonSecondaryDisabledBg: brand,
buttonSecondaryBorder: '#989898',
buttonSecondaryText: white,
buttonSecondaryHoveredBg: '#aaa',
// Card
2019-02-15 18:59:05 -08:00
cardBackgroundColor: black,
sendCardBg: white,
sendCardBorder: border,
// Sidebar
sidebarBg: white,
2019-02-15 18:59:05 -08:00
sidebarBorderRight: border,
sidebarLogoGradientBegin: logo,
sidebarLogoGradientEnd: logo2,
sidebarHoveredItemLabel: '#8E8E96',
sidebarItem: '#aaa',
sidebarItemActive: text,
sidebarItemHovered: text,
sidebarItemHoveredBg: offWhite,
2019-02-15 18:59:05 -08:00
sidebarActiveItemLabel: '#8E8E96',
sidebarActiveItemBorder: 'red',
// Transactions
transactionSent: error,
transactionReceived: success,
2019-02-15 18:59:05 -08:00
transactionsDate: secondaryText,
transactionsItemHovered: '#222222',
// Transaction Item
transactionItemBg: white,
transactionItemHoverBg: whiteHover,
transactionItemBorder: border,
transactionItemAddress: '#666666',
transactionItemAddressHover: '#666666',
// Transaction Details
transactionDetailsShadow: `0px 0px 1px 0px ${black}`,
transactionDetailsBg: white,
transactionDetailsRowHover: whiteHover,
transactionDetailsDivider: border,
transactionDetailsLabel: '#999999',
// Select
selectButtonShadow: 'rgba(238,201,76,0.65)',
2019-02-15 18:59:05 -08:00
// Status Pill
statusPillLabel: text,
statusPillBg: '#F9FBFE',
2019-02-15 18:59:05 -08:00
statusPillBorder: border,
// QR Code
2019-02-15 18:59:05 -08:00
qrCodeWrapperBg: white,
qrCodeWrapperBorder: border,
// Header
headerTitle: text,
// Wallet Summary
walletSummaryBg: white,
2019-02-15 18:59:05 -08:00
walletSummaryBorder: border,
// Wallet Address
walletAddressBg: white,
walletAddressBorder: border,
2019-02-15 18:59:05 -08:00
// Forms
inputBg: white,
inputBorder: border,
inputBorderActive: '#828282',
// Console
consoleBg: white,
consoleBorder: border,
// Misc
2019-02-15 18:59:05 -08:00
divider: '#AAAAAA',
// Settings
settingsCardBg: white,
settingsLearnMore: '#a0a0a0',
settingsLearnMoreHovered: '#000',
};