// components/Tokens.jsx — re-export of the same JS object used in the brand canvas
// so primitives can reach color values from JS where needed.

window.SBTokens = {
  cream:    '#FBF7F1',
  linen:    '#F4EFE8',
  bone:     '#EAE2D6',
  stone:    '#C9BFB1',
  taupe:    '#8F8578',
  sage:     '#9AA394',
  inkSoft:  '#4A453F',
  ink:      '#2A2724',
  amber:    '#B8853A',
  amberSoft:'#D4A85C',
};

window.BOOKINGS_URL = 'https://outlook.office.com/book/G2AdvisoryGroup@gilbertsonbookkeeping.com/';
window.openBookings = (e) => {
  if (e && e.preventDefault) e.preventDefault();
  window.open(window.BOOKINGS_URL, '_blank', 'noopener,noreferrer');
};
