Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3705 | Rev 3707 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

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