generateModifyVars.ts 741 Bytes
/**
 * less global variable
 */
export function generateModifyVars() {
  return {
    // Used for global import to avoid the need to import each style file separately
    // reference:  Avoid repeated references
    'namespace': 'thingskit',
    'primary-color': '#1677ff',
    'info-color': '#1677ff',
    'processing-color': '#1677ff',
    'success-color': '#55D187', //  Success color
    'error-color': '#ED6F6F', //  False color
    'warning-color': '#EFBD47', //   Warning color
    // 'border-color-base': '#EEEEEE',
    'font-size-base': '14px', //  Main font size
    'border-radius-base': '2px', //  Component/float fillet
    'link-color': '#1677ff', //   Link color
    'app-content-background': '#fafafa', //   Link color
  }
}