12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.defaultPresetColors = exports.default = void 0;
- const defaultPresetColors = exports.defaultPresetColors = {
- blue: '#1677FF',
- purple: '#722ED1',
- cyan: '#13C2C2',
- green: '#52C41A',
- magenta: '#EB2F96',
- /**
- * @deprecated Use magenta instead
- */
- pink: '#EB2F96',
- red: '#F5222D',
- orange: '#FA8C16',
- yellow: '#FADB14',
- volcano: '#FA541C',
- geekblue: '#2F54EB',
- gold: '#FAAD14',
- lime: '#A0D911'
- };
- const seedToken = Object.assign(Object.assign({}, defaultPresetColors), {
- // Color
- colorPrimary: '#1677ff',
- colorSuccess: '#52c41a',
- colorWarning: '#faad14',
- colorError: '#ff4d4f',
- colorInfo: '#1677ff',
- colorLink: '',
- colorTextBase: '',
- colorBgBase: '',
- // Font
- fontFamily: `-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
- 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
- 'Noto Color Emoji'`,
- fontFamilyCode: `'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace`,
- fontSize: 14,
- // Line
- lineWidth: 1,
- lineType: 'solid',
- // Motion
- motionUnit: 0.1,
- motionBase: 0,
- motionEaseOutCirc: 'cubic-bezier(0.08, 0.82, 0.17, 1)',
- motionEaseInOutCirc: 'cubic-bezier(0.78, 0.14, 0.15, 0.86)',
- motionEaseOut: 'cubic-bezier(0.215, 0.61, 0.355, 1)',
- motionEaseInOut: 'cubic-bezier(0.645, 0.045, 0.355, 1)',
- motionEaseOutBack: 'cubic-bezier(0.12, 0.4, 0.29, 1.46)',
- motionEaseInBack: 'cubic-bezier(0.71, -0.46, 0.88, 0.6)',
- motionEaseInQuint: 'cubic-bezier(0.755, 0.05, 0.855, 0.06)',
- motionEaseOutQuint: 'cubic-bezier(0.23, 1, 0.32, 1)',
- // Radius
- borderRadius: 6,
- // Size
- sizeUnit: 4,
- sizeStep: 4,
- sizePopupArrow: 16,
- // Control Base
- controlHeight: 32,
- // zIndex
- zIndexBase: 0,
- zIndexPopupBase: 1000,
- // Image
- opacityImage: 1,
- // Wireframe
- wireframe: false,
- // Motion
- motion: true
- });
- var _default = exports.default = seedToken;
|