UNPKG

1.33 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6const theme = {
7 // colors
8 brandLightest: '#f6eef6',
9 brandLight: '#a329a3',
10 brandBase: '#8c238c',
11 brandDark: '#5c1d61',
12
13 whiteBase: '#ffffff',
14 whiteDarker: '#fafafa',
15
16 grayLightest: '#f7f8f9',
17 grayLighter: '#eef1f2',
18 grayLight: '#d3dbdf',
19 grayBase: '#99abb3',
20 grayDark: '#617983',
21 grayDarker: '#415158',
22 grayDarkest: '#20292b',
23
24 activeLightest: '#e0fcff',
25 activeLight: '#00c9e0',
26 activeBase: '#00B0C5',
27
28 successLightest: '#d3f0e1',
29 successLight: '#27CC76',
30 successBase: '#21b468',
31
32 warningLightest: '#ffefd6',
33 warningLight: '#FFB642',
34 warningBase: '#ff9d00',
35
36 dangerLightest: '#f8d3cc',
37 dangerLight: '#F24625',
38 dangerBase: '#da2300',
39
40 attentionBase: '#ff4b1a',
41
42 linkLight: '#0087e3',
43 linkBase: '#0075c3',
44
45 // padding
46 paddingSmall: '4px',
47 paddingMedium: '8px',
48 paddingLarge: '12px',
49
50 // fonts
51 fontFamily: 'caption',
52 fontWeight: 300,
53 fontWeightBold: 500,
54 fontLineHeight: 1.4,
55 fontLineHeightHeadline: 1.625,
56
57 fontSmall: '0.7857142857rem',
58 fontMedium: '14px',
59 fontLarge: '1.2857142857rem',
60 fontHuge: '1.8571428571rem',
61
62 fontSizeEditor: '1.1428571429rem',
63 fontSizeEditorHeadline: '1.8571428571rem',
64 fontSizeEditorSubHeadline: '1.5rem'
65};
66
67exports.default = theme;
\No newline at end of file