-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.js
61 lines (44 loc) · 1.06 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import React from 'react'
import { ThemeProvider } from 'styled-components'
import Global from './global'
const gray = '#e9e8e8'
const gray30 = 'rgba(35,31,32, 0.3)'
const gray60 = 'rgba(35,31,32, 0.6)'
const gray85 = 'rgba(35,31,32, 0.85)'
const colorBlack = '#231f20'
const blue = '#48ccdf'
const red = '#e54c60'
const purple = '#946db6'
const taupe = '#d4c6c3'
const green = '#98d789'
const white = '#ffffff'
const transparent = 'rgba(35,31,32, 0)'
const light = `"Mia Light", "Helvetica Neue", Helvetica, san-serif`
const regular = `"Mia Regular", "Helvetica Neue", Helvetica, san-serif`
const bold = `"Mia Bold", "Helvetica Neue", Helvetica, san-serif`
const fontBlack = `"Mia Black", "Helvetica Neue", Helvetica, san-serif`
export const theme = {
font: {
light,
regular,
bold,
black: fontBlack
},
color: {
gray,
gray30,
gray60,
gray85,
black: colorBlack,
blue,
red,
purple,
taupe,
green,
white,
transparent
},
primaryTextColor: colorBlack,
alternateTextColor: white,
primaryColor: blue
}