-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.ts
54 lines (46 loc) · 1.67 KB
/
theme.ts
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
// when edit them, have to edit in both this file and tailwind.config.js
// not sure how to mix ts and js and requiest and import thingy
// for
// 1. when tailwind can't be used such as in icon, styledComponent
// 2. can be used in tailwind config as well
export const green = "#57B65F";
export const blue = "#4E97F3";
// white grey and black
export const grey0 = "#FFFFFF";
export const grey50 = "#F5F0F0";
export const grey100 = "#E0E0E0";
export const grey200 = "#C2C2C2";
export const grey300 = "#8F8F8F";
export const grey400 = "#7A7A7A";
export const grey500 = "#666666";
export const grey600 = "#525252";
export const grey700 = "#3D3D3D";
export const grey800 = "#292929";
export const grey850 = "#1F1F1F";
export const grey900 = "#121212";
export const primaryColor = "#DB4437";
export const primaryHoveredColor = "#FEBA72";
export const bgColor = grey0;
export const primaryTextColor = grey900;
export const inactiveGrey = grey200;
// font family
export const sansFamily = ["TTCommonsRegular", "Arial", "sans-serif"];
export const serifFamily = ["TTCommonsMedium", "Arial", "sans-serif"];
export const monoFamily = ["Nunito", "Montserrat", "Arial", "sans-serif"];
// font size
export const fontSizeXS = "8px";
export const fontSizeSM = "10px";
export const fontSizeMD = "14px";
export const fontSizeLG = "16px";
export const fontSizeXL = "20px";
export const fontSize2XL = "24px";
export const fontSize3XL = "32px";
// space
export const space2XS = "0.125rem";
export const spaceXS = "0.25rem";
export const spaceSM = "0.5rem";
export const spaceMD = "1rem";
export const spaceLG = "1.25rem";
export const spaceXL = "1.5rem";
export const space2XL = "2rem";
export const space3XL = "4rem";