generated from Medici-Mansion/basic-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.js
48 lines (47 loc) · 842 Bytes
/
theme.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
const theme = {
fontFamily: {
pretendard: 'Pretendard-Regular',
},
fontSize: {
// HEAD
'head-sb24': 24,
'head-sb21': 21,
'head-sb16': 16,
'head-sb14': 14,
'head-sb12': 12,
// // BODY
'body-b16': 16,
'body-b14': 14,
'body-m14': [
14,
{
fontWeight: 500,
},
],
},
colors: {
gray: {
600: '#121212',
500: '#1C1C1C',
400: '#353434',
300: '#595959',
200: '#959595',
100: '#D5D5D5',
},
system: {
red: '#FF4C4C',
orange: '#FF743E',
yellow: '#FFED4E',
green: '#00C27C',
blue: '#397DFF',
indigo: '#142759',
purple: '#8940FF',
},
transparent: {
80: 'rgba(18,18,18,0.8)',
60: 'rgba(0,0,0,0.6)',
},
black: '#000000',
},
};
module.exports = { theme };