lessModifyVars.ts 926 Bytes
/**
 * less global variable
 */
const primaryColor = '#0084f4';
// const primaryColor = '#018ffb';
// const primaryColor = '#0065cc';
//{
const modifyVars = {
  'primary-color': primaryColor, //  Global dominant color
  'success-color': '#55D187', //  Success color
  'error-color': '#ED6F6F', //  False color
  'warning-color': '#EFBD47', //   Warning color
  'link-color': primaryColor, //   Link color
  'disabled-color': 'rgba(0, 0, 0, 0.25)', //  Failure color
  'heading-color': 'rgba(0, 0, 0, 0.85)', //  Title color
  'text-color': 'rgba(0, 0, 0, 0.85)', //  Main text color
  'text-color-secondary ': 'rgba(0, 0, 0, 0.45)', // Subtext color
  'font-size-base': '14px', //  Main font size
  'box-shadow-base': '0 2px 8px rgba(0, 0, 0, 0.15)', //  Floating shadow
  'border-color-base': '#d9d9d9', //  Border color,
  'border-radius-base': '2px', //  Component/float fillet
};
//}

export { modifyVars, primaryColor };