From 3256a06f27753f83c53e677bb0295db0e52cdfbb Mon Sep 17 00:00:00 2001 From: Colin Megill Date: Mon, 16 Oct 2017 10:54:23 -0700 Subject: [PATCH] add greyscale ramp to globals --- src/globals.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/globals.js b/src/globals.js index c98f5421..ee690cb6 100644 --- a/src/globals.js +++ b/src/globals.js @@ -22,7 +22,14 @@ export const continuous = [ /* colors */ export const hcaBlue = "#1c7cc7" -export const lightgrey = "rgb(211,211,211)"; +export const lighterGrey = "rgb(245,245,245)"; +export const lightGrey = "rgb(211,211,211)"; +export const mediumGrey = "rgb(153,153,153)"; +export const darkGrey = "rgb(102,102,102)"; +export const darkerGrey = "rgb(51,51,51)"; + +export const tiniestFontSize = 12; + export const bolder = 700; @@ -33,3 +40,4 @@ export const API = { export const accentFont = "Georgia,Times,Times New Roman,serif"; export const maxParagraphWidth = 600; +export const maxControlsWidth = 800;