| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- "use strict";
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.defaultPresetColors = exports.default = void 0;
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
- const defaultPresetColors = exports.defaultPresetColors = {
- blue: '#1677ff',
- purple: '#722ED1',
- cyan: '#13C2C2',
- green: '#52C41A',
- magenta: '#EB2F96',
- pink: '#eb2f96',
- red: '#F5222D',
- orange: '#FA8C16',
- yellow: '#FADB14',
- volcano: '#FA541C',
- geekblue: '#2F54EB',
- gold: '#FAAD14',
- lime: '#A0D911'
- };
- const seedToken = (0, _extends2.default)((0, _extends2.default)({}, defaultPresetColors), {
- // Color
- colorPrimary: '#1677ff',
- colorSuccess: '#52c41a',
- colorWarning: '#faad14',
- colorError: '#ff4d4f',
- colorInfo: '#1677ff',
- 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'`,
- 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
- });
- var _default = exports.default = seedToken;
|