sizes.js 223 Bytes
Newer Older
Giang Tran committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
const sizes = {
  // global sizes
  small: 5,
  base: 16,
  font: 14,
  radius: 6,
  padding: 25,

  // font sizes
  big: 34,
  h1: 26,
  h2: 20,
  h3: 18,
  title: 16,

  body: 14,
  caption: 12,
};

export default sizes;