Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3709 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3719 stevensc 1
import { css } from '@emotion/react';
2
 
3
import colors from '@styles/config/colors';
4
 
5
export const fontSize = 14;
6
 
7
export const h1 = css`
8
  font-size: 1.3rem;
9
  font-weight: 600;
10
  color: ${colors.font.title};
11
`;
12
 
13
export const h2 = css`
14
  font-size: 1.1rem;
15
  font-weight: 600;
16
  color: ${colors.font.title};
17
`;
18
 
19
export const h3 = css`
20
  font-size: 1rem;
21
  font-weight: 600;
22
  color: ${colors.font.title};
23
`;
24
 
25
export const h4 = css`
26
  font-size: 1rem;
27
  font-weight: 600;
28
  color: ${colors.font.subtitle};
29
`;
30
 
31
export const body1 = css`
32
  font-size: 1rem;
33
  color: ${colors.font.primary};
34
`;
35
 
36
export const body2 = css`
37
  font-size: 1rem;
38
  color: ${colors.font.primary};
39
`;
40
 
41
export const overline = css`
42
  font-size: 0.875rem;
43
  font-weight: 500;
44
  color: ${colors.font.subtitle};
45
  display: inline-flex;
46
`;
47
 
48
export const caption = css`
49
  font-size: 0.875rem;
50
  font-weight: 500;
51
  color: ${colors.font.subtitle};
52
  display: inline-flex;
53
`;
54
 
55
export const typography = {
56
  fontSize,
57
  h1,
58
  h2,
59
  h3,
60
  h4,
61
  body1,
62
  body2,
63
  overline
64
};
65
 
66
export const typographyStyles = {
67
  root: { margin: 0, fontFamily: "'Source Sans 3', sans-serif" }
68
};